Skip to content

Instantly share code, notes, and snippets.

@murisimov
Created March 17, 2017 19:14
Show Gist options
  • Save murisimov/e4b6460eedd2deb89d9202d812131dec to your computer and use it in GitHub Desktop.
Save murisimov/e4b6460eedd2deb89d9202d812131dec to your computer and use it in GitHub Desktop.
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