
Basic Python Review Lesson
Presentation
•
Computers
•
9th Grade
•
Practice Problem
•
Medium
Daniel Clark
Used 35+ times
FREE Resource
9 Slides • 11 Questions
1
Python Basics Review
Printing, Variables, Type Conversion, Input Function, Concatenation
2
Displays any output to the console; can be math calculations and/or strings including text and number characters.
Print Function
3
Multiple Choice
What is the correct way to print "Hello, World!" in Python?
echo "Hello, World!"
print("Hello, World!")
System.out.print("Hello, World!")
printf("Hello, World!")
4
Multiple Choice
What will print(5 + 3) output?
5 + 3
8
Error
Nothing.
5
Printing variables
When printing a variable, no quatation marks are used; Otherwise, it will print the variable name itself as a string.
age = 12
print(age)
Console will print 12.
name = "Adam"
print("name")
The computer will print name, NOT Adam
6
Like a closet or storage box that you name and save data to be used later.
Variables
7
A variable that typically saves text, spaces, and characters. Can include numbers; Will always be surrounded by QUOTATION MARKS
Strings
Positive and negative whole numbers including zero; Used for math calculations.
number_of_students = 12
Integers
Positive and negative decimal numbers; Used for math calculations as well.
gas_price = 3.29
Floats
8
Multiple Choice
Which of the following is a correct variable assignment for a string?
name = "John"
name = 100
name = 10.5
name = True
9
Multiple Choice
What data type is the variable age = 16?
String
Integer
Float
Boolean
10
Multiple Choice
Which of the following is a float in Python?
x = 10
x = "10"
x = 10.0
x = True
11
Converts whatever is enclosed in the ( ) to a string.
str(10) => "10"
str ( ) function
Converts whatever is enclosed in the ( ) to an integer; If it's a decimal, it will round down.
int(3.5) => 3
int("3") = > 3
int ( ) function
Converts whatever is enclosed in the ( ) to a decimal;
float (3) => 3.0
float ( )
12
Multiple Choice
How do you convert a string, num = "123" to an integer in Python?
int(num)
str(num)
float(num)
bool(num)
13
Multiple Choice
What is the output of print(float(7))
7
7.0
Error
"7"
14
The Input Function or input ( )
A way to get someone to interact with the computer program and enter information that is saved to a variable.
name = input ("Hello, what is your name?" )
Your prompt goes in QUOTATIONS; so all data will be a string by default.
15
Multiple Choice
Which is the correct way to take input from the user in Python?
input( )
print ( )
raw_input( )
scanf( )
16
Type Conversion and input
This will convert the entered data from a string to a float (decimal).
float(int("prompt: "))
This will convert the entered data from a string to an integer.
int(input("prompt))
17
Multiple Choice
What will be the data type of the value returned by input() by default?
Integer
Float
String
Boolean
18
Concatenation (Adding Strings and variables)
We can use the addition (+) operator to combine multiple strings and/or variables into one.
print(first_name + middle_name + last_name)
print("I am " + str(age) + " years old.")
19
Multiple Choice
What is the result of the following code? print("Hello " + "World!")
HelloWorld!
Hello World!
Error
Hello
World!
20
Multiple Choice
Which of the following will combine a number and a string correctly?
print("Age: " + 25)
print("Age: " + str(25))
print("Age: " + float(25))
print("Age: " + 25.0)
Python Basics Review
Printing, Variables, Type Conversion, Input Function, Concatenation
Show answer
Auto Play
Slide 1 / 20
SLIDE
Similar Resources on Wayground
18 questions
The Refomation
Presentation
•
9th Grade
13 questions
LATIHAN INFORMATIKA
Presentation
•
9th Grade
18 questions
Week 1 Course Introduction
Presentation
•
9th Grade
18 questions
Materi Ms.Excel
Presentation
•
9th Grade
15 questions
Properties
Presentation
•
8th Grade
18 questions
Multimedia
Presentation
•
9th - 10th Grade
16 questions
While
Presentation
•
KG
15 questions
Review: Function Notation
Presentation
•
9th - 10th Grade
Popular Resources on Wayground
6 questions
Secondary Safety Quiz
Presentation
•
9th - 12th Grade
10 questions
Afterschool Activities & Sports
Quiz
•
6th - 8th Grade
19 questions
ROAR Week 2026
Quiz
•
9th - 12th Grade
20 questions
Lab Safety Quiz
Quiz
•
6th Grade
15 questions
Cool Tool:Chromebook
Quiz
•
6th - 8th Grade
22 questions
would you rather
Quiz
•
3rd - 11th Grade
21 questions
Continents and Oceans
Quiz
•
6th Grade
20 questions
Parts of Speech
Quiz
•
5th Grade
Discover more resources for Computers
20 questions
Early Computing
Quiz
•
7th - 12th Grade
10 questions
Exploring the Parts of a Computer
Interactive video
•
6th - 10th Grade
10 questions
Navigating Digital Citizenship and Online Safety
Interactive video
•
6th - 10th Grade
10 questions
Mastering Proper Keyboarding Techniques
Interactive video
•
6th - 10th Grade