# 1) Download Python IDLE from google and install it in your system. # 2) Find IDLE from search bar in your system. # 3) You will get Interactive mode. # 4) Use Script mode(press ctrl+N after opened the Interactive mode)-- # --to make program in the Python. # 5) Python is Case Sensitive Language. # 6) input: To take input from the user. # 7) Print : To take Output on the screen. # 8) variables= store the values and can change during the execution. # 9) Constent= Cannot change during the execution. ## DATA TYPES # 1) string: Alphabatical letters or word is string. # 2) Integer or Int: Any complete number is integer may be-- # ---its positive or negative e.g 15, 99, -13 etc. # 3) Float : Any number with decimal is float number e.g 10.0 20.5 etc. # 4) Boolean: Answer will be TRUE or FALSE. # SYNTAX: ## OPERATOR & OPERANDS #1) Operator & Operand : Operator are values and Operands are symbols. #2) Assignment Operator: Assign the value with Assignment Operator. ...