[Raspberry Pi] Eingebaute Datentypen in Python

# Beispiel für int
i = 1
print(type(i))

# Beispiel für string
s = "1"
print(type(s))

# Beispiel für float
f = 20.5
print(type(f))

Links