Quick actions

cmd+k|ctrl+k

Navigation

Languages

UNIT 18.5

Snippet info

Language

Python

Visibility

public

Author

mori

Created

2022-05-19T00:45:22.066763Z

Updated

2022-05-19T00:45:31.480856Z

i = 0
while True:
    if i % 10 != 3:
        i += 1
        continue
 
    if i > 73:
        break
 
    print(i, end=' ')
    i += 1
INFO