Advertisement
icarussiano

Untitled

Jan 15th, 2024
526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. lista = []
  2. numero = input("inserisci valore: ")
  3. somma = 0
  4. segno = 1
  5.  
  6. while numero != "":
  7.     lista.append(int(numero))
  8.     numero = input("inserisci valore:(vuoto per terminare) ")
  9.  
  10. for i, numero in enumerate(lista):
  11.     somma += numero * segno
  12.     segno *= -1
  13.     print(numero, end=" ")
  14.     if i==len(lista)-1:
  15.         print(f"= {somma}")
  16.     else:
  17.         if segno == 1:
  18.             print("+", end=" ")
  19.         else:
  20.             print("-", end=" ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement