#to jest tekst
"""print("cześć")
print("cześć")
print("cześć")
print("cześć")
print("cześć")"""
#pierwsza zmienna
liczba=11
print(liczba) #wypisanie zmiennej liczba
liczba = "dwa"
print(liczba)
#sprawdzanie typow
m = "test"
print(type(m))
n = True
m = n
print(type (m))
zMiEnA12 = 1
krakow = 1
toJestNazwaZmiennej = 1 #camel case
Tojestnawazmiennej = 1 #pascal case
to_jest_nazwa_zmiennej = 1 #snakecase
TO_JEST_ZMIENNA = 1 #uppwercase
liczba = 3
liczba = 4
LICZBA = 5
print(liczba,liczba,LICZBA)
#podstawowe typy zmiennych
# int
a = 10
print(a, type(a))
a = -2560
print(a, type(a))
# float
b = 125.9554689087643222345555555555555555555555555555555555555
print(b, type(b)) 
b= -1.087542
print(b, type(b)) 
# bool
c = True
print(c, type (c))
# str
d = "napis"
print(d, type(d)) 
d= "napis"
print(d, type(d)) 
d= "23"
print(d, type(d)) 
#konwersje zmienych 
a = int(3.2)
print(a, type(a))


a = int('10')
print(a, type(a))

a = float(False)
print(a, type (a))

a= float('21.4')
print(a, type(a))

a= bool(-1)
print(a, type(a))
a = bool(0)

#str
print(a, type(a))

a = str(1.5)
print(a, type(a))

a = str (True)
print(a, type(a))













