Skip to content

Commit f33ec60

Browse files
authored
Simple program to learn for loop
1 parent 614967e commit f33ec60

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

for_loop.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
def main():
3+
for i in range(5):
4+
print("PYTHON")
5+
6+
7+
if __name__=="__main__":
8+
main()

0 commit comments

Comments
 (0)