Learn with Ray
DAY 1: print(“Hello”)print(‘how are you today?’)print(5+4)print(‘5+4’)print(‘5+4=’,5+4,’and 6+4=’,6+4)var_1 = 5 #datatype is implicitprint(var_1+10)#variable naming rule: It shouldnt start with a number, only _ is a allowerd special charactervar_1 = 15print(var_1+10)#comments […]