Advertisement
Guest User

https://ehazi.hu/q/115560 - 3. feladat

a guest
Sep 8th, 2022
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. barack = 50
  2. korte = 30
  3.  
  4. print(f"barack + körte = {barack} + {korte} = {barack+korte}")
  5.  
  6. print(f"barack - körte = {barack} - {korte} = {barack-korte}")
  7.  
  8. print(f"barack * körte = {barack} * {korte} = {barack*korte}")
  9.  
  10. print(f"barack / körte = {barack} / {korte} = {barack/korte}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement