1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
How do you import the random module in Python?
import random
What method is used for generating random integers in Python?
random.randint()
What is a reusable chunk of imported code called?
Module
What character ends an if header in Python?
:
What statements are used for choosing among multiple behaviors in Python?
if, elif, else
What type of value does random.random() return?
float between 0.0 and 1.0
What type of value does random.randint() return?
whole int within a specific range