Search Header Logo
Basic Python Review Lesson

Basic Python Review Lesson

Assessment

Presentation

Computers

9th Grade

Practice Problem

Medium

Created by

Daniel Clark

Used 26+ times

FREE Resource

9 Slides • 11 Questions

1

Python Basics Review

media

Printing, Variables, Type Conversion, Input Function, Concatenation

2

media

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?

1

echo "Hello, World!"

2

print("Hello, World!")

3

System.out.print("Hello, World!")

4

printf("Hello, World!")

4

Multiple Choice

What will print(5 + 3) output?

1

5 + 3

2

8

3

Error

4

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

media

Like a closet or storage box that you name and save data to be used later.

Variables

7

media
media
media

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?

1

name = "John"

2

name = 100

3

name = 10.5

4

name = True

9

Multiple Choice

What data type is the variable age = 16?

1

String

2

Integer

3

Float

4

Boolean

10

Multiple Choice

Which of the following is a float in Python?

1

x = 10

2

x = "10"

3

x = 10.0

4

x = True

11

media
media
media

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?

1

int(num)

2

str(num)

3

float(num)

4

bool(num)

13

Multiple Choice

What is the output of print(float(7))

1

7

2

7.0

3

Error

4

"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?

1

input( )

2

print ( )

3

raw_input( )

4

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?

1

Integer

2

Float

3

String

4

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!")

1

HelloWorld!

2

Hello World!

3

Error

4

Hello
World!

20

Multiple Choice

Which of the following will combine a number and a string correctly?

1

print("Age: " + 25)

2

print("Age: " + str(25))

3

print("Age: " + float(25))

4

print("Age: " + 25.0)

Python Basics Review

media

Printing, Variables, Type Conversion, Input Function, Concatenation

Show answer

Auto Play

Slide 1 / 20

SLIDE