5 Modules Flashcards
1
Q
Module
A
A file containing definitions and statements
2
Q
A file containing definitions and statements
A
Module
3
Q
How say turtle.Turtle()
A
In the module turtle, access python element Turtle
4
Q
Print pi
A
print(math.pi)
5
Q
Print square root of 2
A
print(math.sqrt(2))
6
Q
Print sin of 90 degrees
A
print(math.sin(math.radians(90)))
7
Q
Print probability
A
print(random.random())
8
Q
Print random integer between 1 and 6
A
print(random.randrange(1, 7))
9
Q
[ ?
A
Closed interval, inclusive
10
Q
( ?
A
Open interval, non-inclusive
11
Q
Open interval, non-inclusive
A
)
12
Q
Closed interval, inclusive
A
]