Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

progetti principianti python

while True:
    print('''
    Benvenuto al programma calcolatrice!
    Creata da: Mike
    Di seguito un elenco delle varie funzioni disponibili:

    -Per effettuare un'Addizione, seleziona 1;
    -Per effettuare una Sottrazione, seleziona 2;
    -Per effettuare una Moltiplicazione, seleziona 3;
    -Per effettuare una Divisone, seleziona 4;
    -Per effettuare un Calcolo Esponenziale, seleziona 5;
    -Per uscire dal programma puoi digitare ESC;
    ''')

    scelta = input('Inserisci il numero corrispondente all'operazione selezionata --->  ')
    if scelta == "1":
        print('
Hai scelto: Addizione
')
        a = float(input('Inserisci il Primo Numero -> '))
        b = float(input('Inserisci il Secondo Numero -> '))
        print('Il risultato della Somma è: ' + str(a + b))
    elif scelta == "2":
        print('
Hai Scelto: Sottrazione
')
        a = float(input('Inserisci il Primo Numero -> '))
        b = float(input('Inserisci il Secondo Numero -> '))
        print('Il risultato della Sottrazione è: ' + str(a - b))
    elif scelta == "3":
        print('
Hai scelto: Moltiplicazione
')
        a = float(input('Inserisci il Primo Numero -> '))
        b = float(input('Inserisci il Secondo Numero -> '))
        print('Il risultato della Moltiplicazione è: ' + str(a * b))
    elif scelta == "4":
        print('
Hai scelto: Divisione
')
        a = float(input('Inserisci il Primo Numero -> '))
        b = float(input('Inserisci il Secondo Numero -> '))
        print('Il risultato della Divisione è: ' + str(a / b))
    elif scelta == "5":
        print('
Hai scelto: Calcolo Esponenziale
')
        a = float(input('Inserisci la Base -> '))
        b = float(input('Inserisci l'Esponente -> '))
        print('Il risultato del Calcolo Esponenziale è: ' + str(a ** b))
    elif scelta == "ESC":
        print('''L'applicazione verrà ora chiusa!

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++''')
        break

    loop = input('
Desideri continuare ad usare l'applicazione? S/N ')
    if loop == "S" or loop == "s":
        print('''Sto tornando al Menù principale!

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++''')
        continue
    else:
        print('''Grazie e arrivederci!

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++''')
        break
Comment

PREVIOUS NEXT
Code Example
Python :: print g 
Python :: python sqlobject declare connection 
Python :: download pyautogui 
Python :: elevando numero ao quadrado em python 
Python :: pandas boolean array calculating the average of two columns based on a filter or a 3rd column 
Python :: pyhdb cesu-8 
Python :: python recall a line from a text file 
Python :: com.codahale.metrics.annotation.timed 
Python :: if self.quitting: raise BdbQuit in classbased view 
Python :: python get all items from generator 
Python :: py regex if .jpg 
Python :: Start Openvino Python Application at Boot Time using System Service on ubunut 
Python :: diccionario setdefault 
Python :: get next iterator without incrementing python 
Python :: matrix outer product python 
Python :: django two foreignkeys to same model admin error 
Python :: i=int(input("enter the number")); sum=0; pro=1; while(i0): d=1%10; if (d%2==0): sum=sum+d; else: pro=pro*d; i=i//10; print("sum=",sum,"product=",pro); 
Python :: exercise of python loops 
Python :: nsetools index list 
Python :: spevify datatype of column 
Python :: combination generator python 
Python :: how to get tomorrow date in python 
Python :: python sns save plot lable axes 
Python :: Stickler Thief or Maximum sum such that no two elements are adjacent 
Python :: sklearn kmeans mnist 
Python :: get key of min value 
Python :: what exception occurs when you convert a atring to an integer and fail in python 
Python :: [Solved] Pandas TypeError: no numeric data to plot 
Python :: permcheck codility python 
Python :: binarize array python 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =