-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRandom_module part 1.py
69 lines (53 loc) · 1.3 KB
/
Random_module part 1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#;==========================================
#; Title: Python Random module part 1
#; Author: @AyemunHossain
#;==========================================
import random as r
#random integer
print(r.randint(1,100))
print(r.randint(1,100))
print(r.randint(1,100))
#randrange
print(r.randrange(10,100,5))
print(r.randrange(10,100,5))
print(r.randrange(10,100,5))
#random floating numbers
print(r.random())
print(r.random())
#random floating within given range
print(r.uniform(5,10))
print(r.uniform(5,10))
print(r.uniform(5,10))
#random.choice() example
list_1=[1,2,3,4,5,6,7,8,9]
print(r.choice(list_1)) #This choice is not cryptographically secured
print(r.choice(list_1))
print(r.choice(list_1))
#choice in dictionary
dictt={
"Kelly": 50,
"Red": 68,
"Jhon": 70,
"Emma" :40
}
key=r.choice(list(dictt))
value=dictt[key]
print(f"{key} : {value}")
#let's chose same element every time : by help of seed method
print("Now we are selecting the same element everytime : ")
r.seed(4)
key=r.choice(list(dictt))
value=dictt[key]
print(f"1 - {key} : {value}")
r.seed(4)
key=r.choice(list(dictt))
value=dictt[key]
print(f"2 - {key} : {value}")
r.seed(4)
key=r.choice(list(dictt))
value=dictt[key]
print(f"3 - {key} : {value}")
r.seed(4)
key=r.choice(list(dictt))
value=dictt[key]
print(f"4 - {key} : {value}")