
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
8 questions
Variables in Python Flashcard

Flashcard
•
11th Grade
10 questions
PLTW CSE L1 Vocab P1/2

Flashcard
•
9th - 12th Grade
12 questions
CamTech Flashcards Operating Systems

Flashcard
•
11th Grade
10 questions
Python

Flashcard
•
7th - 8th Grade
9 questions
SEM1 EIC Vocab Review

Flashcard
•
10th Grade
7 questions
IGCSE Computer Science Test

Flashcard
•
11th Grade
10 questions
Cybersecurity Practice

Flashcard
•
11th Grade
7 questions
kiểm tra giữa kì

Flashcard
•
10th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
17 questions
[AP CSP] Binary Number System

Lesson
•
9th - 12th Grade
15 questions
1.1 Network Fundamentals Quiz

Quiz
•
10th Grade
20 questions
Understanding Information Processing Cycle

Quiz
•
10th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade