Built-in Functions
Python has many useful built-in functions that can simplify some operations. For instance, these are the following:
min(x, y, ...)
- minimum element ofx, y, ...
max(x, y, ...)
- maximum element ofx, y, ...
abs(x)
- absolute value of numberx
round(x, n)
- rounds numberx
ton
digitspow(x, n)
- exponentiation (x
to the powern
).
For example, you may need to investigate the minimum price of certain list of prices after applying discounts. Or you may need to convert kilometers into miles without extra digits.
123456789# List of prices with discounts prices = [400*0.7, 345*0.8, 270*0.95, 320*0.85] # The lowest price print(min(prices)) # Distance in kilometers dist = 5762.4 # Converting into miles and rounding to 2 digits print(round(dist/1.609, 2))
Tak for dine kommentarer!
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
Awesome!
Completion rate improved to 2.7
Built-in Functions
Stryg for at vise menuen
Python has many useful built-in functions that can simplify some operations. For instance, these are the following:
min(x, y, ...)
- minimum element ofx, y, ...
max(x, y, ...)
- maximum element ofx, y, ...
abs(x)
- absolute value of numberx
round(x, n)
- rounds numberx
ton
digitspow(x, n)
- exponentiation (x
to the powern
).
For example, you may need to investigate the minimum price of certain list of prices after applying discounts. Or you may need to convert kilometers into miles without extra digits.
123456789# List of prices with discounts prices = [400*0.7, 345*0.8, 270*0.95, 320*0.85] # The lowest price print(min(prices)) # Distance in kilometers dist = 5762.4 # Converting into miles and rounding to 2 digits print(round(dist/1.609, 2))
Tak for dine kommentarer!