Skip to content

Instantly share code, notes, and snippets.

@JoMingyu
Created March 29, 2018 08:58
a, _, b = [1, 2, 3]
print(a, b)
# 1, 3
for _ in range(100):
print('loop!')
quotient, _ = divmod(5, 2)
print(quotient)
# 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment