Learning Intention Learning Intention: To develop understanding of variables, data types, and comments in text based programming languages Context: Sequencing.

Slides:



Advertisements
Similar presentations
Python Basics: Statements Expressions Loops Strings Functions.
Advertisements

IT253: Computer Organization Lecture 6: Assembly Language and MIPS: Programming Tonga Institute of Higher Education.
Programming in python Lesson 2.
CSCI/CMPE 4341 Topic: Programming in Python Chapter 3: Control Structures (Part 1) – Exercises 1 Xiang Lian The University of Texas – Pan American Edinburg,
Computing Theory: BBC Basic Coding Year 11. Lesson Objective You will: Be able to define what BBC basic is Be able to annotate BBC basic code Be able.
INTRODUCTION TO PYTHON PART 2 INPUT AND OUTPUT CSC482 Introduction to Text Analytics Thomas Tiahrt, MA, PhD.
From Scratch to Python Learn to program like the big boys / girls!
Munster Programming Training
PYTHON. Python is a high-level, interpreted, interactive and object- oriented scripting language. Python was designed to be highly readable which uses.
Python File Handling. In all the programs you have made so far when program is closed all the data is lost, but what if you want to keep the data to use.
Computer Science 101 Introduction to Programming.
By the end of this session you should be able to...
Python Programming Using Variables and input. Objectives We’re learning to build functions and to use inputs and outputs. Outcomes Build a function Use.
Functions, Procedures, and Abstraction Dr. José M. Reyes Álamo.
1 Computer Science of Graphics and Games MONT 105S, Spring 2009 Session 1 Simple Python Programs Using Print, Variables, Input.
PROGRAMMING In Lesson 2. STARTER ACTIVITY Complete the starter activity in your python folder – lesson 2 Now we will see how you got on and update your.
INPUT & VARIABLES.
1 Introduction to Python LING 5200 Computational Corpus Linguistics Martha Palmer.
2. WRITING SIMPLE PROGRAMS Rocky K. C. Chang September 10, 2015 (Adapted from John Zelle’s slides)
PRESENTED BY: DAWN DOUGHERTY AND EUNETHIA WILLIAMS EDU 528 MAY 2012 THE FIBONACCI SEQUENCE.
PROGRAMMING LANGUAGE C++ lecture2 أ. منى الزهراني.
For Loop GCSE Computer Science – Python. For Loop The for loop iterates over the items in a sequence, which can be a string or a list (we will discuss.
Controlling Program Structures. Big Picture We are learning how to use structures to control the flow of our programs Last week we looked at If statements.
COMPUTER PROGRAMMING Year 9 – lesson 1. Objective and Outcome Teaching Objective We are going to look at how to construct a computer program. We will.
Getting Started With Python Brendan Routledge
Introducing Python 3 Introduction to Python. Introduction to Python L1 Introducing Python 3 Learning Objectives Know what Python is and some of the applications.
Introducing Python Introduction to Python.
Introduction to Programming
FOP: User Input & Strings
Unit 5 Lesson 6: User Input and Strings
1-1 Logic and Syntax A computer program is a solution to a problem.
Do it now activity Last lesson we used Flowol to create a solution to a problem a computer could solve. Identify what each symbol does:
Lesson 1 An Introduction
A Level Computing – A2 Component 2 1f, 1g, 1h, 1i, 1j.
Design & Technology Grade 7 Python
Do it now activity Green pen activity in books.
Iterations Programming Condition Controlled Loops (WHILE Loop)
Learning to Program in Python
Do it now activity Since the beginning of the term you have planned a database based on your own scenario. Using your plan you are going to create a database,
Python I/O.
Fill the screen challenge!
Functions, Procedures, and Abstraction
إستراتيجيات ونماذج التقويم
Programming Right from the Start with Visual Basic .NET 1/e
Lesson 6: User Input and Strings
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
Programming In Lesson 3.
An Introduction to Python
Escape sequences: Practice using the escape sequences on the code below to see what happens. Try this next code to help you understand the last two sequences.
Coding Concepts (Basics)
Python Lesson 21 Mr. Kalmes.
Early - I can develop a sequence of instructions and run them using programmable devices or equivalent Designs a simple sequence of instructions/algorithm.
Inputs and Variables Programming Guides.
Starter answer these questions in your book
Introduction In today’s lesson we will look at: why Python?
Python – convert to Machine Language
”Mathematics is the language of physics”
Python Lesson’S 1 & 2 Mr. Kalmes.
Python Basics with Jupyter Notebook
Objective: To know the equations of simple straight lines.
Chopin’s Nocturne.
Java: Variables, Input and Arrays
Introduction to Python
Python 10 Mr. Husch.
Hint idea 2 Split into shorter tasks like this.
Starter Which of these inventions is: Used most by people in Britain
What you need to do… Drag the pieces of code into the correct order like you can see in the EXAMPLE below. print ( “ int input ) = + Hello world chr ord.
Regression and Correlation of Data
Objective: To know the equations of simple straight lines.
PYTHON - VARIABLES AND OPERATORS
Presentation transcript:

Learning Intention Learning Intention: To develop understanding of variables, data types, and comments in text based programming languages Context: Sequencing Instructions using Python

Learning Outcomes Emerging: Know what a variable is and give an example of what it is used for Be able to list at least 3 data types Developing: Be able to store a variable in a Python program and print using basic programming functions Be able to apply an appropriate data type to a variable in a Python program Secure: Be able to apply an appropriate data type to a user inputted variable in a Python program Be able to use variables and user inputs to perform simple mathematical equations in a Python Program Master: Create a Python program that will convert currency from a base unit (GBP) into a range of other world currencies