Python Notes for B-Tech , Bsc , Bca....
UNIT-1 What is Python? * Python is a high level , general purpose object oriented programming language. * It was created by Guido Van Rossum in 1991 at CWI in Netherland. Syntex- print("Hello") ----------------------- Features of Python:- * Simple and easy to learn * Open source * Platform independent * Rich Library * Portable * Interpreted ----------------------- Applications of Python :- * Web development * Game development * IOT development * AI * Machine Learning ------------------------------- # Input / Output :- * For taking input in python , we have input() * For taking output in python , we have print() ------------------------------ Python Comments :- Comments are nothing but ignorable part of python program that are ignored by the interpreter. There are 2 types of Comments - 1. Single line comment syntex- #.......... 2. Multi line comment syntex- ''' .......... .......... ........ ''' ----------------- Keywords:- Keywords are the wor...