There was an error while loading. Please reload this page.
1 parent c5e503e commit e49995dCopy full SHA for e49995d
print.py
@@ -0,0 +1,9 @@
1
+def main():
2
+ print("Enter Number")
3
+ no=int(input())
4
+ for i in range(no):
5
+ print("*")
6
+
7
8
+if __name__=="__main__":
9
+ main()
0 commit comments