Beispiele und Musterlösungen
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

05_expressions.py 541B

2 months ago
1234567891011121314151617181920212223242526272829
  1. # Thema: Ausdrücke
  2. # Ausführungsreihenfolge
  3. print(3 * 4 - 8 // 2)
  4. print(3 * (4 - 8) // 2)
  5. # Operatoren bei unterschiedlichen Typen
  6. print(4.0 + 2)
  7. print (4 * 2.0)
  8. print(4 / 2)
  9. # Formatierte Ausgabe
  10. print(f'Das Ergebnis ist {3+4}')
  11. s = 'Haus'
  12. z = 7
  13. print(f'{s:10} ist ein Gebäude')
  14. print(f'{z:010} ist eine Zahl')
  15. euro = 20 / 3
  16. print(f'Das kostet {euro:.2f} €.')
  17. # Mehrere Ausdrücke in einem f-String
  18. eingabe = 5
  19. print(f'Das Quadrat von {eingabe} ist {eingabe*eingabe:.2f}')
  20. print(f'{3+4} {3*4} {3-4} {3/4} {3//4} {3%4} {3**4}')