8000 random number · htudu/python_exercise@82aa0f1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 82aa0f1

Browse files
author
puja kumari
committed
random number
1 parent 9246c42 commit 82aa0f1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

puja/random_no.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import random
2+
list_of_random = []
3+
4+
for i in range(100):
5+
x = random.randint(10,80)
6+
list_of_random.append(x)
7+
8+
print(list_of_random)

0 commit comments

Comments
 (0)
0