Python Basics Cheatsheet Python is an interpreted language. Math, numbers and variables Mathematical Operators Besides the usual operators (+, -, * and /), Python has exponent ( ** ) and negation ( - as a prefix to a number ). Integers and Floats Integers: 50 Floats: 3.1421 Order of operations PEMDAS: Parentheses, Exponent, Multiplication, Division, Addition and Subtraction Using Variables No spaces in the variable name and must start with a character. Python style Pep 8 recommends lowercase words separated by underscore. Rounding import math math.ceil(4.8) // will print 5 Other python libraries https://docs.python.org/3.5/library/ Strings Create strings first_name = ‘Aditya’ last_name = ‘Inapurapu’ Concatenate strings full_name = first_name + ‘ ‘ + last_name Print strings // Print one string print(first_name) // Print multiple strings one after the other with a space in between p...