Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Handle More Complex Math in Python | First Acquaintance with Python
Introduction to Python(ihor)

Stryg for at vise menuen

book
Handle More Complex Math in Python

Python provides several additional math operations, including floor division (//) for integer division, modulus (%) to find the remainder after division, and exponentiation (**) for raising a number to a power.

12345678
# Floor division print(18 // 4) # Remainder of the division print(18 % 4) # Raising to the power print(18 ** 4)
copy

These mathematical operations may seem confusing at first, especially with division and related operators, but they're actually quite simple.

Floor division gives the whole number result of division, while the remainder shows what's left. Exponentiation is multiplying a number by itself repeatedly.

Opgave

Swipe to start coding

You have $250 and want to buy as many cookie packs as possible, with each pack costing $6. Determine how many packs you can buy and how much money will remain.

  • Compute the floor division of 250 by 6 to find out how many full packs you can buy.
  • Determine the remainder when 250 is divided by 6 to see how much money will be left after buying the packs.

Løsning

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 4
Vi beklager, at noget gik galt. Hvad skete der?

Spørg AI

expand
ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

book
Handle More Complex Math in Python

Python provides several additional math operations, including floor division (//) for integer division, modulus (%) to find the remainder after division, and exponentiation (**) for raising a number to a power.

12345678
# Floor division print(18 // 4) # Remainder of the division print(18 % 4) # Raising to the power print(18 ** 4)
copy

These mathematical operations may seem confusing at first, especially with division and related operators, but they're actually quite simple.

Floor division gives the whole number result of division, while the remainder shows what's left. Exponentiation is multiplying a number by itself repeatedly.

Opgave

Swipe to start coding

You have $250 and want to buy as many cookie packs as possible, with each pack costing $6. Determine how many packs you can buy and how much money will remain.

  • Compute the floor division of 250 by 6 to find out how many full packs you can buy.
  • Determine the remainder when 250 is divided by 6 to see how much money will be left after buying the packs.

Løsning

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 4
Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Vi beklager, at noget gik galt. Hvad skete der?
some-alt