It’s some notes about the room : [Python]
Comments
1
2
3
4
#This is a comment
print("Hello, World!")
Strings
1
2
3
4
5
6
7
print("Hello")
print('Hello')
message = "TRIAL"
print(message)
Lists
1
2
3
4
mylist = ["apple", "banana", "cherry"]
print(mylist)
Sets
1
Tuples
1