
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
BTEC DIT C1 LAA - User Interface Vocab Test

Flashcard
•
10th - 11th Grade
10 questions
Python

Flashcard
•
7th - 8th Grade
12 questions
3ds Max Interface Flashcard

Flashcard
•
9th Grade
8 questions
PIZA

Flashcard
•
9th Grade
7 questions
Bài luyện tập tin học 10_bài 28

Flashcard
•
10th Grade
4 questions
Python Functions with Parameters

Flashcard
•
10th Grade
13 questions
IT concepts and terminology set #1 (it Fundamentals)

Flashcard
•
11th Grade
10 questions
Python Practice

Flashcard
•
9th Grade
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

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

Interactive video
•
6th - 10th Grade
10 questions
Proper Keyboarding Techniques

Interactive video
•
6th - 10th Grade
10 questions
Understanding Computers: Hardware, Software, and Operating Systems

Interactive video
•
7th - 12th Grade
29 questions
AP CSP Unit 2 Review (Code.org)

Quiz
•
10th - 12th Grade