Skip to content

Instantly share code, notes, and snippets.

@xkumiyu
Created March 22, 2020 11:54
Show Gist options
  • Save xkumiyu/a91880f48004f4c958b16ae516de308c to your computer and use it in GitHub Desktop.
Save xkumiyu/a91880f48004f4c958b16ae516de308c to your computer and use it in GitHub Desktop.
# for _ in range(N)
for _ in range(N):
pass
# for i in range(N)
for i in range(N):
i
# while i < N
i = 0
while i < N:
i += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment