Python Zero to Hero

### DAY 1print(“Welcome”)val1 = 5#val1 is a variable in this caseprint(“val1”)print(“Value of variable val1 =”,val1)#type() – it gives the datatype of variableprint(type(val1)) # <class ‘int’> integer: nondecimal value- -5, -99,0,9999999val1 […]