Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Some Simple Math | First Acquaintance
course content

Conteúdo do Curso

Introduction to Python

Este curso está parecendo fácil demais?

Mergulhe na prática do mundo real com nosso curso focado em aplicação

Great job! Python excels at crunching numbers. The syntax is simple: use + for addition, - for subtraction, * for multiplication, and / for division. Remember to use the print() function if you want to display the result. Unlike strings, mathematical expressions don't require quotation marks ("..." or '...').

For instance, let's tackle some basic math:

Tarefa

Here's your assignment: compute the following and print the outcomes:

  1. 2580 added to 198.
  2. 23 times 42.
  3. 1512 divided by 27.

Tudo estava claro?

Seção 1. Capítulo 3
toggle bottom row
course content

Conteúdo do Curso

Introduction to Python

Este curso está parecendo fácil demais?

Mergulhe na prática do mundo real com nosso curso focado em aplicação

Great job! Python excels at crunching numbers. The syntax is simple: use + for addition, - for subtraction, * for multiplication, and / for division. Remember to use the print() function if you want to display the result. Unlike strings, mathematical expressions don't require quotation marks ("..." or '...').

For instance, let's tackle some basic math:

Tarefa

Here's your assignment: compute the following and print the outcomes:

  1. 2580 added to 198.
  2. 23 times 42.
  3. 1512 divided by 27.

Tudo estava claro?

Seção 1. Capítulo 3
toggle bottom row
some-alt