Here is my code:
def icecream():
cost = int(6)
flavor = input('What flavor would you like? => ')
return 'The', flavor, 'will cost', cost, 'dollars.'
print(icecream())
then after printing the output i get is:
What flavor would you like? => ('The', 'Vanilla', 'will cost', 6, 'dollars?')
I want the output to just simply read:
What flavor would you like? => The Vanilla will cost 6 dollars.