
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
15 questions
Relations and functions
Presentation
•
9th Grade
20 questions
INFORMATIKA 9
Presentation
•
9th Grade
15 questions
JavaScript Control Structures
Presentation
•
9th Grade
19 questions
Yr 11 - AQA GCSE Computer Science-Computer networks revision
Presentation
•
9th - 10th Grade
18 questions
Algebra - Introduction to Functions
Presentation
•
9th Grade
18 questions
USE BASIC FUNCTION OF A WEB BROWSER TO LOCATE INFORMATION
Presentation
•
9th Grade
18 questions
For loops in python
Presentation
•
9th Grade
17 questions
Identifying and Naming Basic Geometric Figures
Presentation
•
9th - 10th Grade
Popular Resources on Wayground
24 questions
PBIS-HGMS Day 10
Quiz
•
6th - 8th Grade
10 questions
HCS SCI 03 Summer School Review 3
Quiz
•
3rd Grade
11 questions
Home Scope
Quiz
•
7th - 8th Grade
15 questions
HCS SCI 05 Summer School Assessment 3 Review
Quiz
•
5th Grade
35 questions
Lufkin Road Middle School Student Handbook & Policies Assessment
Quiz
•
7th Grade
18 questions
Geo 11.3 Area of Circles and Sectors
Quiz
•
9th - 11th Grade