Posts by MrLexotan • 45 points
2 posts
-
3
votes2
answers239
viewsQ: What is the difference between ", " and "+" in Python?
In a code mensagem = "ola " nome = input("Diga seu nome ") print (mensagem + nome ) mensagem = "ola" nome = input("Diga seu nome ") print (mensagem , nome ) The two do the same function , with the…
-
-2
votes2
answers94
viewsQ: How to make a replacement using the tuple list in python
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…