Variablen und Typen

Einführung in Python

Hugo Bowne-Anderson

Data Scientist at DataCamp

Variable

  • Spezifischer Name unter Beachtung der Groß-/Kleinschreibung

  • Wert prüfen mittels Aufruf des Variablennamen

  • 1,79 m – 68,7 kg

height = 1.79
weight = 68.7

height
1.79
Einführung in Python

BMI berechnen

height = 1.79
weight = 68.7

height
1.79

$$ \text{BMI} = \frac{\text{Gewicht}}{\text{Körpergröße}^2} $$

68.7 / 1.79 ** 2
21.4413
weight / height ** 2
21.4413
bmi = weight / height ** 2
bmi
21.4413
Einführung in Python

Reproduzierbarkeit

height = 1.79
weight = 68.7
bmi = weight / height ** 2
print(bmi)
21.4413
Einführung in Python

Reproduzierbarkeit

height = 1.79
weight = 74.2 # <-
bmi = weight / height ** 2
print(bmi)
23.1578
Einführung in Python

Python-Typen

type(bmi)
float
day_of_week = 5
type(day_of_week)
int
Einführung in Python

Python-Typen (2)

x = "body mass index"
y = 'this works too'

type(y)
str
z = True
type(z)
bool
Einführung in Python

Python-Typen (3)

2 + 3
5
'ab' + 'cd'
'abcd'
  • Unterschiedlicher Typ = unterschiedliches Verhalten!
Einführung in Python

Lass uns üben!

Einführung in Python

Preparing Video For Download...