110 likes | 246 Views
Python Programming L anguage. Code Academy. www.codeacademy.com You must use the following Browser… Google Chrome. What have we learnt so far?. Variables. What are they used for? Data types. What three data types are there? White space. Why is this important?
E N D
Code Academy www.codeacademy.com You must use the following Browser… Google Chrome
What have we learnt so far? Variables. What are they used for? Data types. What three data types are there? White space. Why is this important? Statements. How do we write a statement? Comments. How do we write a comment? Arithmetic What are they? operatorsxx There is 6 in total.
Variables Using variables is a way to store values for later
Data Types Interger “int”, Float “float”, Booleans “bool”
White Space • Python will interpret white space in certain ways. You need to use whitespace following the correct rules. • You will need to press the spacebar four times to indent code. • If Python doesn’t understand you could end up with… • The peasant said, "The witch turned me into a newt!" • "The peasant," said the witch, "turned me into a newt!"
Statements Statements are written to help us remember bits of code we have written. You write a comment starting with a #.
Comments Comments are written to help us remember bits of code we have written. You write a comment starting and finishing with “““ “““.
Arithmetic Operators Addition Subtraction Multiplication Division Exponentiation Modulus What are they? There is 6 in total.
Case Sensitivity • You must be careful when you are typing and use the appropriate letter case for the different syntax you are using. • Variables are all in lowercase. spam = 6 • Booleans are title case. bool = True