Posts by Mofux666 • 53 points
3 posts
-
0
votes1
answer138
viewsQ: How to read two numeric values for a list in the same line in Python?
I know that to read multiple values by input on the same line you use "split()", and to add values to lists, some loop like "for" or "while"but I would like to know how to join both to be able to…
-
5
votes2
answers105
viewsQ: Does Python syntax accept either "+" or "," in the "print()" command?
For example, if I wanted to print a string that I create on time along with a ready-made variable, any of the cases would work? #Case 1 nome = "Júlia" print("Olá " + nome) #Case 2 nome = "Júlia"…
python-3.xasked Mofux666 53 -
0
votes0
answers67
viewsQ: Error executing Python code.Am I doing something wrong or is it a problem in my IDLE?
I’m a beginner in Python and just when I went to test the Turtle module for the first time it ran normally when I was typing the commands and running at each line. However, when I saved the same…