Skip to content

Commit 432073e

Browse files
authored
Add files via upload
1 parent 2d9f505 commit 432073e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Random_Sequence_Generation.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from random import*
2+
n=int(input("Enter limit of Sequence :: "))
3+
for i in range(n):
4+
print(int(randint(1,50)))

0 commit comments

Comments
 (0)