We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d9f505 commit 432073eCopy full SHA for 432073e
Random_Sequence_Generation.py
@@ -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