Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Math expressions: Familiar operators | Variables in Python
Python Tutorial for Beginners
course content

Conteúdo do Curso

Python Tutorial for Beginners

Python Tutorial for Beginners

1. Introduction to Programming
2. Variables in Python
3. Comments
4. If...Else Statement

bookMath expressions: Familiar operators

You can assign the result of a math expression to the variable.

1
lucky_number = 3 + 4
copy

This displays 7 on the screen.

Here is a statement that subtracts 45 from 30, assigning the result, -15, to the variable.

1
loss = 30 - 45
copy

This one assigns the product of 5 times 4 — the result is 20 — to the variable.

1
dozens = 5 * 4
copy

This one assigns 36 divided by 9 — the result is 4 — to the variable.

1
number = 36 / 9
copy

Tarefa

Divide the variable total by 3 and assign the result to the variable result. Display these 2 variables(total, result) on the screen.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 4
toggle bottom row

bookMath expressions: Familiar operators

You can assign the result of a math expression to the variable.

1
lucky_number = 3 + 4
copy

This displays 7 on the screen.

Here is a statement that subtracts 45 from 30, assigning the result, -15, to the variable.

1
loss = 30 - 45
copy

This one assigns the product of 5 times 4 — the result is 20 — to the variable.

1
dozens = 5 * 4
copy

This one assigns 36 divided by 9 — the result is 4 — to the variable.

1
number = 36 / 9
copy

Tarefa

Divide the variable total by 3 and assign the result to the variable result. Display these 2 variables(total, result) on the screen.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 4
toggle bottom row

bookMath expressions: Familiar operators

You can assign the result of a math expression to the variable.

1
lucky_number = 3 + 4
copy

This displays 7 on the screen.

Here is a statement that subtracts 45 from 30, assigning the result, -15, to the variable.

1
loss = 30 - 45
copy

This one assigns the product of 5 times 4 — the result is 20 — to the variable.

1
dozens = 5 * 4
copy

This one assigns 36 divided by 9 — the result is 4 — to the variable.

1
number = 36 / 9
copy

Tarefa

Divide the variable total by 3 and assign the result to the variable result. Display these 2 variables(total, result) on the screen.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

You can assign the result of a math expression to the variable.

1
lucky_number = 3 + 4
copy

This displays 7 on the screen.

Here is a statement that subtracts 45 from 30, assigning the result, -15, to the variable.

1
loss = 30 - 45
copy

This one assigns the product of 5 times 4 — the result is 20 — to the variable.

1
dozens = 5 * 4
copy

This one assigns 36 divided by 9 — the result is 4 — to the variable.

1
number = 36 / 9
copy

Tarefa

Divide the variable total by 3 and assign the result to the variable result. Display these 2 variables(total, result) on the screen.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 2. Capítulo 4
Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
some-alt