#to jest tekst 

"""print("Cześć")
print("Cześć")
print("Cześć")
print("Cześć")"""

# pierwsza zmienna

liczba = 11

print(liczba) #wpisanie zmiennej liczba

liczba = "dwa"
print(liczba)  

#sprawdzenie typow

m = 'test'
print(type(m))

n = True
m = n

print(type(m))

ZMieNna_12 = 1

krakow = 1

toJestZmienna = 1 #Camel Case
ToJestZmienna = 1 #Pascal Case
to_jest_nazwa_zmiennaj = 1 #Snake Case
TO_JEST_ZMIENNA = 1 #Uppercase

liczba = 3
Liczba = 4
LICZBA = 5
print(liczba,Liczba,LICZBA)

#pdstawowe typy zmiennych

#int

a = 10
print(a, type(a))

a = -2077
print(a,type(a))

# float

b = 121.1234567890
print(b, type(b))

b = -1.12345
print(b, type(b))

# bool

c = True
print(c, type(c))

c = False
print(c, type(c))

# string (str)

d = "napis"
print(d, type(d))

d = 'napis'
print(d, type(d))

d = "23"
print(d, type(d))

# Konwersje zmiennych

a = int(3.2)

print(a, type(a))

a = int(True)
print(a, type(a))

a = int('10')
print(a, type(a))

# float

b = float(1)
print(b, type(b))

b = float(False)
print(b, type(b))

b = float('21.4')
print(b, type(b))

# bool 

a = bool(-1)
print(a, type(a))

a = bool(0)
print(a, type(a))

a = bool(2)
print(a, type(a))

# str

a = str(21)
print(a, type(a))

a = str(1.5)
print(a, type(a))

a = str(True)
print(a, type(a))

