I want the keyword "2 orange juice" in the variable N to store the number and :
number = 2 (preferably integer, but anything I convert it after)
food="food juice"
The code is below and went as far as I could 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)