Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- lista = []
- numero = input("inserisci valore: ")
- somma = 0
- segno = 1
- while numero != "":
- lista.append(int(numero))
- numero = input("inserisci valore:(vuoto per terminare) ")
- for i, numero in enumerate(lista):
- somma += numero * segno
- segno *= -1
- print(numero, end=" ")
- if i==len(lista)-1:
- print(f"= {somma}")
- else:
- if segno == 1:
- print("+", end=" ")
- else:
- print("-", end=" ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement