我已经阅读了许多 python 空格删除问题和答案,但无法找到我正在寻找的内容。这是一个小程序,显示了该问题的具体示例。我非常感谢您的帮助。
import random
math_score = random.randint(200,800)
math_guess = int(input("\n\nWhat score do you think you earned on the math section (200 to 800)?\t"))
print ("\n\n\nOn the math section, you guessed",math_guess,", and your actual score was",math_score,"!")
所以这是我的问题:
当我执行程序时,我得到以下结果:
On the math section, you guessed 600 , and your actual score was 717 !
我想删除句子中每个变量后面的空格。在这种情况下,600 和“,”之间的空格以及 717 和“!”之间的空格。
有没有解决这个问题的标准方法?