Skip to content

Commit

Permalink
Create 06-Loops.py
Browse files Browse the repository at this point in the history
  • Loading branch information
muhiqsimui authored Jun 22, 2021
1 parent c292a58 commit b8460fa
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
if __name__ == '__main__':
n = int(input())

for i in range (n):
if i>=0 and i<=20:
print(i**2)

0 comments on commit b8460fa

Please sign in to comment.