

Python Data Types and Variables
Presentation
•
Computers
•
8th - 12th Grade
•
Easy
Michael Kendall
Used 297+ times
FREE Resource
12 Slides • 5 Questions
1
Python Data Types and Variables

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.
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:
greeting = (Hello)
greeting = ("Please enter your name")
greeting = (Welcome to Comp Sci)
greeting = ("Happy Friday!!!")
10
Multiple Select
Please select all floating point numbers:
1.444
34567
777.980
32.0
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

Show answer
Auto Play
Slide 1 / 17
SLIDE
Similar Resources on Wayground
16 questions
While
Presentation
•
KG
11 questions
N5 Programming Recap
Presentation
•
7th - 12th Grade
15 questions
Inscribed Angles
Presentation
•
9th - 12th Grade
13 questions
TUGAS PELATIHAN TEKKOMDIK SMA SEMIN
Presentation
•
9th - 12th Grade
15 questions
Computers and Devices
Presentation
•
KG - University
12 questions
Isotopes and Ions
Presentation
•
8th - 11th Grade
10 questions
Operators in Python
Presentation
•
9th - 12th Grade
10 questions
Domain 2 Lesson 3
Presentation
•
9th - 12th Grade
Popular Resources on Wayground
10 questions
Factors 4th grade
Quiz
•
4th Grade
10 questions
Cinco de Mayo Trivia Questions
Interactive video
•
3rd - 5th Grade
13 questions
Cinco de mayo
Interactive video
•
6th - 8th Grade
20 questions
Math Review
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
20 questions
Inferences
Quiz
•
4th Grade
19 questions
Classifying Quadrilaterals
Quiz
•
3rd Grade
Discover more resources for Computers
15 questions
Review DT Year 2 Semester 2
Quiz
•
8th Grade
45 questions
AP CSP Exam Review
Quiz
•
9th - 12th Grade
50 questions
AP CSP Review
Quiz
•
9th - 12th Grade
7 questions
Internet Privacy and Digital Awareness
Flashcard
•
8th Grade
18 questions
Company Logos
Quiz
•
6th - 8th Grade
17 questions
CSP Robot Questions Review
Quiz
•
10th - 12th Grade
10 questions
Exploring Digital Citizenship Essentials
Interactive video
•
6th - 10th Grade
18 questions
Early Video Games
Quiz
•
6th - 8th Grade