Skip to content

Commit e49995d

Browse files
authored
Accept number from user and print * no of times
1 parent c5e503e commit e49995d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

print.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)