Search Header Logo
Python Data Types and Variables

Python Data Types and Variables

Assessment

Presentation

Computers

8th - 12th Grade

Easy

Created by

Michael Kendall

Used 297+ times

FREE Resource

12 Slides • 5 Questions

1

Python Data Types and Variables

media

2

Today's Agenda:

​- Do-Now

​- Introduction to Lesson

​- Lesson Objectives

​- Python Data Types

​- What is Syntax?

​- Code Practice

​- Exit Ticket: Project Stem Lesson 1.1 and 1.2

3

Introduction

You may have heard the word variable in a math class before. In this lesson, we will learn how Python handles different types of data and variables, and how it stores that data.

4

Lesson Objectives

  • Upon successful completion of this lesson, you will be able to:

  • Define and utilize variables.


  • Distinguish between the variable types of integer and string.

5

Python Data Types:

  • Integers or int ( any whole number 1, 2 ,77, 200)

  • Floats (any decimal point number 1.5, 3.124, 8.999)

  • Strings ( "Lets the user type in letters, numbers and words")

  • Functions (A function is a block of code which only runs when it is called. You can pass data, known as parameters, into a function.)

  • List

6

​What is Syntax?

​- the set of rules that defines the combinations of symbols that are considered to be correctly structured statements or expressions in that language.

media

7

​Example of Python Syntax:

​print(" Welcome to Computer Science! ")

​Step 1: Type the keyword print

​Step 2: ( ) Add parenthesis

​Step 3: (" ") Add quotation marks inside the parenthesis

​Step 4: (" Welcome to Computer Science ") Type Welcome to Computer Science in between the parenthesis.

8

Strings (str)

  • Lets the user type in letters, numbers and words

  • Not used for calculations

  • When doing calculations: be sure to check that your value is a number, not a string

  • Always surrounded in quotation marks

9

Multiple Select

Select all strings:

1

greeting = (Hello)

2

greeting = ("Please enter your name")

3

greeting = (Welcome to Comp Sci)

4

greeting = ("Happy Friday!!!")

10

Multiple Select

Please select all floating point numbers:

1

1.444

2

34567

3

777.980

4

32.0

5

21

11

What are Variables?

  • A name for a spot in the computer’s memory

  • This value can change while the program runs

  • Different types of data take up different amounts of space in memory

12

Creating a variable with Python:

  • Syntax:

  • variable_name = ( value)

  • variable_name = (" string_value")

13

Open Ended

Try it yourself:


first_name = (" Your name ")

age = (" 32 ")

print(" Hey " + first_name + " your age is " + age)

14

Creating an input statement:

  • Anytime we need information from the user we will use an input statement

  • Try it:

  • first_name = input (" Enter your first name")

  • print(first_name)

15

Open Ended

Adding an input statement:


first_name = input (" Enter your first name ")

age = input(" How old are you? ")

print(" Hey " + first_name + " your age is " + age)

16

Open Ended

What about numbers?


Try it:


num1 = input("Enter a number: ")

num2 = input("Enter a number: ")

print(num1 + num2)

17

The Fix: Adding int

  • num1 = int(input("Enter a number: "))

  • num2 = int(input("Enter a number: "))

  • print(num1 + num2)

Python Data Types and Variables

media

Show answer

Auto Play

Slide 1 / 17

SLIDE