Home Object-Oriented-Programming
Post
Cancel

Object-Oriented-Programming

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

Dictionaries

Conditionals

Booleans

Iterations

Loops

This post is licensed under CC BY 4.0 by the author.