Created
March 17, 2017 19:14
-
-
Save murisimov/e4b6460eedd2deb89d9202d812131dec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n = 324 | |
some_text = "hey there glad to see you" | |
# == | |
# != | |
# > | |
# < | |
# >= | |
# <= | |
if n == 100: | |
print "exactly what we need!" | |
elif n > 100: | |
print "wow a lot of numbers!" | |
else: | |
print "hmmm we need more numbers." | |
array = [1, 2, 3, ".txt", ".pdf"] | |
for element in array: | |
print element |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment