Variáveis e tipos

Introdução ao Python

Hugo Bowne-Anderson

Data Scientist at DataCamp

Variável

  • Nome específico, com distinção entre maiúsculas e minúsculas

  • Chamar um valor usando o nome da variável

  • 1,79 m – 68,7 kg

height = 1.79
weight = 68.7

height
1.79
Introdução ao Python

Cálculo do IMC

height = 1.79
weight = 68.7

height
1.79

$$ \text{IMC} = \frac{\text{peso}}{\text{altura}^2} $$

68.7 / 1.79 ** 2
21.4413
weight / height ** 2
21.4413
bmi = weight / height ** 2
bmi
21.4413
Introdução ao Python

Reprodutibilidade

height = 1.79
weight = 68.7
bmi = weight / height ** 2
print(bmi)
21.4413
Introdução ao Python

Reprodutibilidade

height = 1.79
weight = 74.2 # <-
bmi = weight / height ** 2
print(bmi)
23.1578
Introdução ao Python

Tipos de objeto Python

type(bmi)
float
day_of_week = 5
type(day_of_week)
int
Introdução ao Python

Tipos de objeto Python (2)

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

type(y)
str
z = True
type(z)
bool
Introdução ao Python

Tipos de objeto Python (3)

2 + 3
5
'ab' + 'cd'
'abcd'
  • Tipo diferente = comportamento diferente!
Introdução ao Python

Vamos praticar!

Introdução ao Python

Preparing Video For Download...