LoslegenKostenlos loslegen

Python as a calculator

Python is perfectly suited to do mathematical calculations. It can do addition, subtraction, multiplication and division, to name a few.

Now it's your turn to practice doing math in Python!

Diese Übung ist Teil des Kurses

Introduction to Python for Finance

Kurs anzeigen

Anleitung zur Übung

Complete the following tasks by replacing ____ with the correct Python code:

  • Print the sum of 4 and 5.
  • Print the result of subtracting 5 from 5.
  • Print the result of multiplying 3 and 5.
  • Print the result of dividing 10 by 2.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Addition
____

# Subtraction
____

# Multiplication
____

# Division
____
Code bearbeiten und ausführen