why does this not work /u/Educational_Rule2330 Python Education

def namehello():

name = str(input("qual'è il tuo nome? "))

if name:

print("ciao " + str(name))

else:

print("ciao mondo")

return name

def numberchose():

try:

print("scegli un numero")

n = float(input())

somma = 0

n = somma + n

print("il tuo numero è " + str(n))

except:

print("bruh.")

return n

def doppiojojo(x):

try:

print("scegli un altro numero")

x = float(input())

doppio = x*2

print("il doppio di " + str(x) + " è " + str(doppio))

except ValueError:

print("bruh.")

return doppio

print(str(name) + ", hai scelto il numero " + str(n) + ", che è la metà di " + str(doppio))

close = input("premi invio per chiudere")

submitted by /u/Educational_Rule2330
[link] [comments]

​r/learnpython def namehello(): name = str(input(“qual’è il tuo nome? “)) if name: print(“ciao ” + str(name)) else: print(“ciao mondo”) return name def numberchose(): try: print(“scegli un numero”) n = float(input()) somma = 0 n = somma + n print(“il tuo numero è ” + str(n)) except: print(“bruh.”) return n def doppiojojo(x): try: print(“scegli un altro numero”) x = float(input()) doppio = x*2 print(“il doppio di ” + str(x) + ” è ” + str(doppio)) except ValueError: print(“bruh.”) return doppio print(str(name) + “, hai scelto il numero ” + str(n) + “, che è la metà di ” + str(doppio)) close = input(“premi invio per chiudere”) submitted by /u/Educational_Rule2330 [link] [comments] 

def namehello():

name = str(input("qual'è il tuo nome? "))

if name:

print("ciao " + str(name))

else:

print("ciao mondo")

return name

def numberchose():

try:

print("scegli un numero")

n = float(input())

somma = 0

n = somma + n

print("il tuo numero è " + str(n))

except:

print("bruh.")

return n

def doppiojojo(x):

try:

print("scegli un altro numero")

x = float(input())

doppio = x*2

print("il doppio di " + str(x) + " è " + str(doppio))

except ValueError:

print("bruh.")

return doppio

print(str(name) + ", hai scelto il numero " + str(n) + ", che è la metà di " + str(doppio))

close = input("premi invio per chiudere")

submitted by /u/Educational_Rule2330
[link] [comments] 

Leave a Reply

Your email address will not be published. Required fields are marked *