1
I wish that at the time of typing in the variable N the word "2 orange juice" the file stores in the variables number and food:
number = 2 (preferably integer, but anything I convert it after)
food = "juice of food"
The code is down and that’s as far as I can get:
suco_laranja = "suco de laranja"
morango = "morango fresco"
mamao = "mamao"
goiaba = "goiaba vermelha"
manga = "manga"
laranja = "laranja"
brocolis = "brocolis"
T = int(input(""))
for i in range(T):
N = input()
numero, alimento = N.split()
print(numero)
print(alimento)