Skip to content

Instantly share code, notes, and snippets.

@KotaroS
Created October 25, 2021 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KotaroS/0a3fa532add95f76e496760fe64e8677 to your computer and use it in GitHub Desktop.
Save KotaroS/0a3fa532add95f76e496760fe64e8677 to your computer and use it in GitHub Desktop.
a, b, c = 10, 100, "hello"
print(a)
print(b)
print(c)
d = e = f = 40
print(d)
print(e)
print(f)
x = 50
print(str(a < x < b))
x = 100
print(str(a < x < b))
y = None
print(str(y is None))
print(str(y is not None))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment