CA 01 - Python Variables, Print
These task are done in jupyter lite and Idk how to submit so i copied them and pasted here TASK-1 print("hello world") hello world name = "Adharsh" print(name) Adharsh name = "Adharsh" age = 19 city = "chennai" print(name, age, city) Adharsh 19 chennai print(f"Hello, My name is {name} and I'm {age} years old living at {city}") Hello, My name is Adharsh and I'm 19 years old living at chennai print("Hello" + " " + "world") Hello world print("Line1\nLine2\nLine3") Line1 Line2 Line3 print('He said, "Hello, world!"') He said, "Hello, world!" print("C:\\Users\\Name") C:\Users\Name print(5+3) 8 print("hello","world",sep="-") hello-world print("hello","world",sep=" ") hello world is_active = True print(is_active) True print("hello\nhello\nhello") hello hello hello temperat...