#snake_case = 10.5
#camelCase = 15
#PascalCase = 20

#Jednoliniowy komentarz

"""
Wieloliniowy komentarz
"""

#print(type(camelCase))

"""
typ str (string) to właściwość tekstowa
typ int (integer) to właściwość liczb całkowitych
typ float to właściowość liczb całkowitych + częściu ułamkowe
typ bool to właściwość logiczna

"""
string = "Hi"
integer = 1
float = 1.1
bool = True

test1 = integer + float
print(test1, type(test1)) #Wynik 2.1 <class 'float'>

test2 = integer + bool
print(test2, type(test2)) #Wynik 2 <class 'int'>
