Python Nicholas Cousino WRA 150. What is it? Programming Language General Purpose High-Level Readability.

Slides:



Advertisements
Similar presentations
COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
Advertisements

Technical Specification / Schedule Department of Computer Science and Engineering Michigan State University Spring 2007 Team : CSE 498, Collaborative Design.
6. & 7. Teams: Technical Specification / Schedule Project Title Team Member 1 Team Member 2 Team Member 3 Team Member 4 Department of Computer Science.
Programming Introduction November 9 Unit 7. What is Programming? Besides being a huge industry? Programming is the process used to write computer programs.
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.
Revision – Data types Design a database structure for a class. This database needs to contain information about their name, exam marks, DOB, exam grades,
MLA (Modern Language Association) Style
By Alfredo Alvarez. Agenda: Find out who the instructor is. Talk about goals and why you want to learn python. Discuss the materials and the methodology.
CSC 110 A 1 CSC 110 Introduction to Python [Reading: chapter 1]
EMT1111 Logic and Problem Solving Dr. José M. Reyes Álamo Lecture 1.
Python By: Hannah Segobiano. What is Python? Python is a type of coding or its a type of programming language.
EMT1111 Logic and Problem Solving Fall 2012 Dr. José M. Reyes Álamo Lecture 1.
EMT1111 Logic and Problem Solving Dr. José M. Reyes Álamo Lecture 1.
Total Item Price: $ Dollars. Website: Price: $60.00.
Python – Making Decisions Lecture 02. Control Structures A program that only has one flow is useful but limited. We can use if statements to make these.
Jan Tichava – presenting author Ondřej Rohlík Jan Pikl Department of Computer Science and.
Steve Dower Software Engineer Python Tools for Visual Studio.
Codecademy Online Course (coding websites and games) HTML, CSS and the basics of JavaScript.
EMT1111 Logic and Problem Solving Dr. José M. Reyes Álamo Lecture 1.
Fundamentals of Web Design Copyright ©2004  Department of Computer & Information Science Introducing XHTML: Module A: Web Design Basics.
Introduction to Information and Computer Science Computer Programming Lecture b This material (Comp4_Unit5b), was developed by Oregon Health and Science.
Python – May 11 Briefing Course overview Introduction to the language Lab.
1 Computer Science of Graphics and Games MONT 105S, Spring 2009 Session 1 Simple Python Programs Using Print, Variables, Input.
Please log on The. AN INTRODUCTION TO ‘Python is a high-level, general purpose programming language’ Python is one of the many programming languages.
Python Mini-Course University of Oklahoma Department of Psychology Day 2 – Lesson 7 Conditionals and Loops 4/18/09 Python Mini-Course: Day 2 - Lesson 7.
Computing Science 1P Lecture 14: Friday 2 nd February Simon Gay Department of Computing Science University of Glasgow 2006/07.
Component 4: Introduction to Information and Computer Science Unit 5: Overview of Programming Languages, Including Basic Programming Concepts Lecture 2.
Library 10 – Information Competency Citing Web Resources.
OCR GCSE Computing © Hodder Education 2013 Slide 1 OCR GCSE Computing Python programming 1: Introduction.
Introduction to Python Lesson 1 First Program. Learning Outcomes In this lesson the student will: 1.Learn some important facts about PC’s 2.Learn how.
Computer Hardware Engineer In this field you have to know computer and electronics, engineering and technology. Also you need to know the English language.
Lecture 4 Functions. 2 CodeCademy 4.a. 3 CodeCademy: comments.  As parameter of a function  Second way to introduce variables:  What do max, min,
C++ Programming: Introduction 2015, Spring Pusan National University Ki-Joune Li
8 January 2016Birkbeck College, U. London1 Introduction to Programming Lecturer: Steve Maybank Department of Computer Science and Information Systems
Creating a mystic meg program A simple program asking the user questions and using their answers to build up a fortune telling in a list.
The Functions and Purposes of Translators Translators, Interpreters and Compilers - High Level Languages.
PYTHON PROGRAMMING Week 3 - Tuesday. STARTER Hour of Code Video.
The Functions and Purposes of Translators Translators, Interpreters and Compilers - High Level Languages.
Computer Programming Thinking in Code. Intro Computational Thinking Decompose Patterns General and Abstract Algorithms.
Machine Language Computer languages cannot be directly interpreted by the computer – they are not in binary. All commands need to be translated into binary.
Instructor: Dr. Mike Turi Department of Computer Science and Computer Engineering Pacific Lutheran University Lecture slides adapted from Part 4, EE 334.
GCSE COMPUTER SCIENCE Practical Programming using Python Lesson 4 - Selection.
GCSE COMPUTER SCIENCE Practical Programming using Python
YEAR 12 COMPUTER SCIENCE.
CSCI 203: Introduction to Computer Science I
Computer Science A-level
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:
Hierarchy of Data in a Database
Computer Science Getting Ready for Year 12.
ENDNOTE FOR SCIENCE AND ENGINEERING
Coding in the Real World
University of Gujrat Department of Computer Science
Introduction to Python
CVS By: Mark Henkel.
CSE 498, Collaborative Design
( OFFICE TOOLS AND JAVA USING NETBEANS)
THE REAL WORLD APPLICATIONS OF PYTHON. INTRODUCTION Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum.
Works Cited page.
CPS120: Introduction to Computer Science
The University of Adelaide, School of Computer Science
C Programming Lecture 0 : Introduction
Introduction to Computer Science
Control Statements.
The University of Adelaide, School of Computer Science
The University of Adelaide, School of Computer Science
Numpy, pylab, matplotlib (follow-up)
CSCI 203: Introduction to Computer Science I
OCR Computer Science Getting Ready for Year 12 Name:
Computer Science A-level
Introduction to Computer Science
Presentation transcript:

Python Nicholas Cousino WRA 150

What is it? Programming Language General Purpose High-Level Readability

command = input("What would you like to do?").lower() elif command == "accounting": total = 0.00 for item in prices: total += prices[item] * stock[item] print ("Total Inventory equals ${amount}".format(amount=total))

What can Python do? A simple version of Battleship! Other projects on website

Battleship! A quick glance at the source code…

Battleship! Hardest Part: Learning what individual lines do

Battleship! It gets easier!

Learning Python Codecademy Resources from Department of Computer Science and Engineering

Outcome I learned Python

Outcome I learned Python I learned the basics… … But a good foundation

Outcome More to learn, but I did get a good start

Works Cited Codecademy. N.p., n.d. Web. 31 Mar McCullen, Mark. CSE 231. Michigan State University, East Lansing. Lecture