Python basics
Python Basics- Introduction to python- Python is a Simple programming language. It is free & open source It is a High level programming language. Developed by Gudio van Rossum. It is portable on all Operating systems. Python Character Set- Letters ( A-Z and a-z) means it is case sensitive languages in python Uppercase and Lowercase letters are different. Digits (0-9). Special symbols (- + * / etc.) White spaces (blank Space, tab, Carriage return, newline, form feed.) Other character set - Python can access all ASCII and UNICODE characters . Variables- A variable is a name given to a memory location in a program. Meaning of variable is that its value can change (Vary). Memory- In memory of the Computer there would be a place of variables inside the memory and the value will be stored inside a variable. example- a=2 in mathematics a=2 (the value of a is equal to 2 but in Programming i...