Python in One Shot
Python in One Shot(By Tanver Ali) Why to Use Python? Python can be used for : Programming (for Placements/online contests/DSA) Development (using a backend framework called Django) Machine Learning / Data Science / Artificial Intelligence Websites built using Python include Google, Youtube, Instagram, Netflix, Uber & much more. What to Install? Python ( https://www.python.org/ ) PyScripter ( https://rb.gy/bvnn69 ) PyCharm ( https://www.jetbrains.com/pycharm/ ) Our First Python Program print ( "Hello World" ) A Key Point to know about Python It is a case sensitive language Variables Basic Types in Python - numbers(integers, floating), boolean, strings Example 1 : name = "shradha" age = 22 print (name) print (age) Example 2 : name = "shradha" age = 22 name = "aman" age = 24 print (name) print (age) Example 3 : first_name = "shradha" last_name = "khapra" age = 19 is_adult = True print (first_name + " " +...