Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#1.
# The language I've selected is Python and you can find all the information about on it's official website: https://www.python.org/

#2.
#this is a one line comment

"""
this is a multiline comment
"""
'''
this is another approach for a multiline comment
'''

#3.
my_variable = "this is my first variable"

#There is no built-in way to declare constants in Python

#4.
x = 10 # int
y = 3.14 # float
z = "Hi" # str
flag = True # or False bool
c = 2 + 3j # complex

#5.
print("Hello, Python!")