Extra spaces when printing

后端 未结 4 1186
梦毁少年i
梦毁少年i 2021-01-28 06:05

I\'ve read through a number of the python whitespace removal questions and answers but haven\'t been able to find what I\'m looking for. Here is a small program that shows a sp

4条回答
  •  情话喂你
    2021-01-28 06:18

    You need to format the entire line into a single string, then print that string.

    print ("\n\n\nOn the math section, you guessed {0}, and your actual score was {1}!".format(math_guess, math_score))
    

提交回复
热议问题