You are viewing a single comment's thread. Return to all comments →
if name == 'main': n = int(input()) count = 0 for _ in range(n): print(count ** 2) count += 1
Seems like cookies are disabled on this browser, please enable them to open this website
Loops
You are viewing a single comment's thread. Return to all comments →
if name == 'main': n = int(input()) count = 0 for _ in range(n): print(count ** 2) count += 1