Numbers python's 2 main types for Numbers is int and float (or integers and floating point numbers) type(1) #int type(-10) #int type(0) #int type(0.0) #float type(2.2) #float type(4E2) #float - 4*10 to the power of 2 # Arithmetic 10 + 3 # 13 10 - 3 # 7 10 * 3 # 30 10 ** … Continue reading PYTHON CHEATSHEET
PYTHON CHEATSHEET