
Python Programming Basics - MP2 Study
Flashcard
•
Computers
•
10th Grade
•
Medium
Allyson Smith
Used 2+ times
FREE Resource
Student preview

9 questions
Show all answers
1.
FLASHCARD QUESTION
Front
What is a conditional statement in Python?
Back
A conditional statement in Python allows the program to execute certain pieces of code based on whether a condition is true or false. Examples include if, elif, and else statements.
2.
FLASHCARD QUESTION
Front
How do you assign user input to a variable in Python?
Back
You can assign user input to a variable using the input() function. For example:
user_input = input('Enter something: ')
3.
FLASHCARD QUESTION
Front
What is a for loop in Python?
Back
A for loop in Python is used to repeat code a certain number of times. Ex:
for i in range(4):
forward(10)
4.
FLASHCARD QUESTION
Front
How do you assign a new value to a variable in Python?
Back
You can assign a new value to a variable by using the assignment operator '='. For example:
x = 5
x=10
After both lines are run x will equal 10.
5.
FLASHCARD QUESTION
Front
What is an extended for loop in Python?
Back
for i in range(10,51,5)
i will start at 10, increase 5 each time and stop when it reaches 51.
6.
FLASHCARD QUESTION
Front
How do you use 'i' in a for loop in Python?
Back
You can use i in the block of code as a counter.
for i in range(5):
print(i)
This will print 0 1 2 3 4
7.
FLASHCARD QUESTION
Front
How do you use the mod operator to check for even or odd numbers in Python?
Back
Mod returns the remainder. You can use the mod operator '%' to check for even or odd numbers. If a number % 2 equals 0, it is even; otherwise, it is odd.
num=5
num%2=1
8.
FLASHCARD QUESTION
Front
How do you use '+=' to increase a variable in Python?
Back
The '+=' operator is used to add a value to a variable and assign the result back to that variable. For example: x += 1 is equivalent to x = x + 1.
9.
FLASHCARD QUESTION
Front
How do you change a user input to an integer in Python?
Back
You can change a user input to an integer using the int() function. For example: user_input = int(input('Enter a number: '))
Similar Resources on Wayground
10 questions
Essential Housework Tasks
Flashcard
•
10th Grade
10 questions
Geometry Basics: Points and Planes
Flashcard
•
10th Grade
10 questions
Flashcards sobre Oratoria
Flashcard
•
KG
6 questions
Fetch-Execute Cycle and CPU Registers
Flashcard
•
KG
8 questions
Untitled Flashcards
Flashcard
•
9th - 12th Grade
7 questions
2.6 Giant Covalent Structures
Flashcard
•
10th Grade
7 questions
Reference Books and Their Types
Flashcard
•
KG
3 questions
CAIE Chemistry IGCSE Flashcards
Flashcard
•
10th Grade
Popular Resources on Wayground
20 questions
Brand Labels
Quiz
•
5th - 12th Grade
11 questions
NEASC Extended Advisory
Lesson
•
9th - 12th Grade
10 questions
Ice Breaker Trivia: Food from Around the World
Quiz
•
3rd - 12th Grade
10 questions
Boomer ⚡ Zoomer - Holiday Movies
Quiz
•
KG - University
25 questions
Multiplication Facts
Quiz
•
5th Grade
22 questions
Adding Integers
Quiz
•
6th Grade
10 questions
Multiplication and Division Unknowns
Quiz
•
3rd Grade
20 questions
Multiplying and Dividing Integers
Quiz
•
7th Grade