You are viewing a single comment's thread. Return to all comments →
I came up with a different solution I think than most. But still works ¯\_(ツ)_/¯
¯\_(ツ)_/¯
if __name__ == '__main__': n = int(input()) v_value = 0 while v_value < n: print(v_value * v_value) v_value = v_value + 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 →
I came up with a different solution I think than most. But still works
¯\_(ツ)_/¯