Files
openide/python/python-features-trainer/resources/data/modules/python/EditorBasics/Comment.py.sample
Alexey Merkulov 772df076b6 [IFT] Python support extracted to its own module
GitOrigin-RevId: fba49eaa88e820444422b6d7b2fa666fe6c25d09
2020-11-12 17:39:39 +00:00

8 lines
94 B
Plaintext

for i in range(5):
print(i)
primes = [2, 3, 5, 7]
for prime in primes:
print(prime)