Vorrei restituire due valori da una funzione in due variabili separate. Per esempio:
def select_choice():
loop = 1
row = 0
while loop == 1:
print('''Choose from the following options?:
1. Row 1
2. Row 2
3. Row 3''')
row = int(input("Which row would you like to move the card from?: "))
if row == 1:
i = 2
card = list_a[-1]
elif row == 2:
i = 1
card = list_b[-1]
elif row == 3:
i = 0
card = list_c[-1]
return i
return card
E voglio essere in grado di usare questi valori separatamente. Quando ho provato a usare return i, card
, restituisce a tuple
e questo non è quello che voglio.
else: continue
prima delle dichiarazioni di ritorno