SlideShare a Scribd company logo
Syntax
What is Syntax?
 Every language has it, even English!
 In Python:
 sprite = codesters.Sprite("spaceship")
 sprite is the variable name
 You should always change this to a unique name
 codesters.Sprite() is a method
 “spaceship” is a parameter
 String values use “quotes”
 Number values do not
 Remember both parentheses!
 # is a comment
Demo time!
 Until 7:15 PM
Syntax of Method
 Define the method
def click():
# sprite = codesters.Text("text", x, y)
myText = codesters.Text("Welcome to Pluto!", 100, 200, red")
 Call the method
stage.event_click(click)
Demo Time!
 Under Projects -> Public
 Search for 979 to see each other’s shared projects
 Search for eve6grl02 to see mine
For Next Week
 If working in a group, pick your group
 Decide on a project and bring an idea for next week
 Next week we are learning about Loops and If
statements (Intro to Python 10 + 12)
 Also user input if we have enough time (Intro to Python
11)
 Try to work on Intro to Codesters and Intro to Python 1
– 9
 Class number: f951c5 Login: Rodgers.

More Related Content

PPTX
Intro to python3
PPTX
The Lesser Known Stars of the Tidyverse
PPTX
Programming Challenge
PDF
Data variables
PPTX
How to python
PPTX
PYTHON Introduction 1Deep learning 2.pptx
ODP
Hands on Session on Python
PPTX
PYTHON PPT.pptx python is very useful for day to day life
Intro to python3
The Lesser Known Stars of the Tidyverse
Programming Challenge
Data variables
How to python
PYTHON Introduction 1Deep learning 2.pptx
Hands on Session on Python
PYTHON PPT.pptx python is very useful for day to day life

Similar to Intro to python (20)

PPTX
Presentation of Python Programming Language
PPTX
Introduction to Python Programming language
PPTX
Python Programming - Variables, Objects and Classes
PPTX
An Introduction To Python - Python Midterm Review
PPTX
what-is-python-presentation.pptx
PPTX
What is Paython.pptx
PPTX
python-presentation.pptx
PPTX
Introduction of python Introduction of python Introduction of python
PPTX
Unit_I-Introduction python programming (1).pptx
PPTX
uom-2552-what-is-python-presentationalllllll.pptx
PPTX
uom-2552-what-is-python-presentation (1).pptx
PPTX
Intro to python programming (basics) in easy language
PPTX
Problem Solving and Python Programming PPT.This will be helpfull for first ye...
PPTX
uom-2552-what-is-python-presentation.pptx
PDF
cos 102 - getting into programming with python.pdf
PPTX
Introduction To Programming with Python-1
PPTX
What is python-presentation FOR CLASS 10.pptx
PPTX
Exploring Data Science Using Python Tools
PPTX
Python Fundamentals for the begginers in programming
PPTX
VARIABLES AND DATA TYPES IN PYTHON NEED TO STUDY
Presentation of Python Programming Language
Introduction to Python Programming language
Python Programming - Variables, Objects and Classes
An Introduction To Python - Python Midterm Review
what-is-python-presentation.pptx
What is Paython.pptx
python-presentation.pptx
Introduction of python Introduction of python Introduction of python
Unit_I-Introduction python programming (1).pptx
uom-2552-what-is-python-presentationalllllll.pptx
uom-2552-what-is-python-presentation (1).pptx
Intro to python programming (basics) in easy language
Problem Solving and Python Programming PPT.This will be helpfull for first ye...
uom-2552-what-is-python-presentation.pptx
cos 102 - getting into programming with python.pdf
Introduction To Programming with Python-1
What is python-presentation FOR CLASS 10.pptx
Exploring Data Science Using Python Tools
Python Fundamentals for the begginers in programming
VARIABLES AND DATA TYPES IN PYTHON NEED TO STUDY
Ad

Recently uploaded (20)

PPTX
master seminar digital applications in india
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Presentation on HIE in infants and its manifestations
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
Cell Structure & Organelles in detailed.
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Chinmaya Tiranga quiz Grand Finale.pdf
PDF
A systematic review of self-coping strategies used by university students to ...
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Pharma ospi slides which help in ospi learning
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
master seminar digital applications in india
01-Introduction-to-Information-Management.pdf
Presentation on HIE in infants and its manifestations
VCE English Exam - Section C Student Revision Booklet
Cell Structure & Organelles in detailed.
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Anesthesia in Laparoscopic Surgery in India
Introduction-to-Literarature-and-Literary-Studies-week-Prelim-coverage.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
Chinmaya Tiranga quiz Grand Finale.pdf
A systematic review of self-coping strategies used by university students to ...
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Pharma ospi slides which help in ospi learning
102 student loan defaulters named and shamed – Is someone you know on the list?
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Ad

Intro to python

  • 2. What is Syntax?  Every language has it, even English!  In Python:  sprite = codesters.Sprite("spaceship")  sprite is the variable name  You should always change this to a unique name  codesters.Sprite() is a method  “spaceship” is a parameter  String values use “quotes”  Number values do not  Remember both parentheses!  # is a comment
  • 4. Syntax of Method  Define the method def click(): # sprite = codesters.Text("text", x, y) myText = codesters.Text("Welcome to Pluto!", 100, 200, red")  Call the method stage.event_click(click)
  • 5. Demo Time!  Under Projects -> Public  Search for 979 to see each other’s shared projects  Search for eve6grl02 to see mine
  • 6. For Next Week  If working in a group, pick your group  Decide on a project and bring an idea for next week  Next week we are learning about Loops and If statements (Intro to Python 10 + 12)  Also user input if we have enough time (Intro to Python 11)  Try to work on Intro to Codesters and Intro to Python 1 – 9  Class number: f951c5 Login: Rodgers.