-2
The question asks for :
A buffet restaurant offers only five basic types of food. Think of five simple dishes and store them in a tuple. • Use a for loop to display each dish offered by the restaurant. • Try modifying one of the items and check that Python rejects the change. • The restaurant changes its menu, replacing two of the items with dishes different. Add a code block that rewrites the tuple and then use a for loop to display each of the revised menu items.
for comida in buffet :
print (comida)```
Mas eu não estou conseguindo fazer a substituição
eu já tentei ```buffet[0,1] =( "jaca" , "angu" )
buffet(0,1) =( "jaca" , "angu" )
buffet = ( "jaca" , "angu" )```
As duas primeiras dão erro , a ultima substituiria toda a lista
Thank you very much !!
– MrLexotan