Catapult Python Programming Session 4

Slides:



Advertisements
Similar presentations
Tic-Tac-Toe Using the Graphing Calculator for Derivatives.
Advertisements

Tic Tac Toe Game Design Using OOP
Model View Controller Development architecture. MVC Model: the classes encapsulating the functionality of your app View: what the user sees and interfaces.
OCR Computing GCSE © Hodder Education 2013 Slide 1 OCR GCSE Computing Python programming 7: Program flow control.
Type accurately challenge! This is a starter activity and should take 2 minutes [ slide 1 ] 1.Can you type out the code in Code Box 2.1 with no errors.
Writing Program Code in BASIC Write a program to prompt for and accept values into TWO variables, numx and numy. The program should square the value stored.
Lecture 2 Examples Pseudo code and flowcharts. Problem 1 Read a number as input and then print if it is even or odd.
Python Arrays. An array is a variable that stores a collection of things, like a list. For example a list of peoples names. We can access the different.
Debuggers in Python. The Debugger Every programming IDE has a tool called a debugger. This application does NOT locate or fix your bugs for you! It slows.
Solving Inequalities. C + 3 < 12 Guess a reasonable solution and write your guess.
Mark Hudson – Session 1 David Lynn – Session 2 The Microsoft Office 2007 Experience jeffersonparish.wikispaces.com.
Chapter two Lesson Eleven: Expressions ©
ENTRANCE TICKET You take out a loan for $20,000 to finance your college education. In your research of loans and loan interest rates, you find that: Federal.
The Accumulator Pattern Summing: Add up (“accumulate”), e.g. 1 2 plus 2 2 plus 3 2 plus … plus Variation: Form a product (instead of sum), e.g.
SATMathVideos.Net If a circle of radius, r, is inscribed inside an equilateral triangle, what percentage of the area of the triangle is covered by the.
30 ° 60 ° s S2S2 S√3 2 A= s 2 √3 4 A= s 2 √3 4 S= 3 A= 3 2 √3 4 A= 9√3 4 A≈ 3.9.
Creating and Using Modules Sec 9-6 Web Design. Objectives The student will: Know how to create and save a module in Python Know how to include your modules.
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.
Make a function This is a starter activity and should take 5 minutes [ slide 1 ] >>> def count(number): n=1 while n
Triangles.
CST 1101 Problem Solving Using Computers
Catapult Python Programming Session 4
Introduction to Eclipse
Writing & reading txt files with python 3
Simple Interest By: Ms. Naira.
The tic-tac-toe method for solving problems involving similar triangles Click for next slide.
Topic: Python’s building blocks -> Variables, Values, and Types
Pamela Moore & Zenia Bahorski
Catapult Python Programming Thursday Session
O X X O O X X O X O X O O X O X O X Tic Tac Toe Graphical
2 Is an this acceptable answer? sqrt(5) I in 6 = be the If to up sqrt
2-D Lists Taken from notes by Dr. Neil Moore
The UK Tier 1 Entrepreneur Visa and the UK Representative of Overseas Business Visa - SmartMove2UK
MDD 410 Enthusiastic Studysnaptutorial.com
Python 18 Mr. Husch.
Binary Code  
CompSci 101 Introduction to Computer Science
مبررات إدخال الحاسوب في رياض الأطفال
Today’s lesson – Python next steps
DIVIDING FRACTIONS TIC-TAC-TOE
Learning Outcomes –Lesson 4
Lesson Aims Vocabulary In this lesson you are going to:
WICS - Flappy Anteater Python Tutorial
Working with Variables
Almost everything is better when you plan
Announcements & review
Lists in Python Creating lists.
21twelveinteractive.com/ twitter.com/21twelveI/ facebook.com/21twelveinteractive/ linkedin.com/company/21twelve-interactive/ pinterest.com/21twelveinteractive/
Section 3 Programming with Turtle Graphics
Notes Over 3.7 Solve for the indicated variable. 1. Area of a Triangle.
Newgate mall school rewards program
Python 19 Mr. Husch.
Class 7 coordinates: pixel and with setCoords aspect ratio Rectangle
Unit 3 Review (Calculator)
Game Over Module 4 Lesson 2.
Python Lesson’S 1 & 2 Mr. Kalmes.
CSE 115 September 12, 2008.
Calculate x A B C D 10 cm 28 cm 10 cm2 100 cm2 QUESTION 1 Question 5
How to run an interactive online safety event
Today we're going to be talking about the scientific method and talking quickly. You guys are all going to read the chapter and finish an outline, so.
How to run an interactive online safety event
Python 3 Mr. Husch.
Find the slope of the graph
Python 19 Mr. Husch.
Python 18 Mr. Husch.
Calculate 9 x 81 = x 3 3 x 3 x 3 x 3 3 x 3 x 3 x 3 x 3 x 3 x =
CMPT 102 Introduction to Scientific Computer Programming
2-D Lists Taken from notes by Dr. Neil Moore
Tic-Tac-Toe Game Engine
Bell Work Title: Turtle Intro Date:
Presentation transcript:

Catapult Python Programming Session 4

Demo tic tac toe and circle programs. Variables, calculations. If time allows, do loops and strings. See transcript http://xkcd.com/353/

Announcements Continue thinking about project ideas and who you want to work with

Today’s schedule Equilateral triangle Start using VS Code Programs: Finish miscGraphics New pic posted Start using VS Code Programs: How long does it take for me to save up for a car? Say, $5000 saving $200/month, earning 5% interest? Interactive graphics (if time)

Programs that help you write programs IDLE: great for quick experimentation VS Code: great for organizing bigger programs