python 脚本 运行 在命令行中完美,但在 repl 上测试失败,它
python script run perfectly in command line but failed test on repl,it
enter image description here
这段代码 运行 在我的命令行上,总共进行了 6 次测试但失败了 two.it 看起来像额外的 space 我不知道如何解决它。
这里是 link 我的回复 https://repl.it/@seunlaww/SnivelingWateryArchives-1#arithmetic_arranger.py
两个问题:
- 在第 2 行,删除多余的 space
- 在长度检查中,使用
len(problems)
,而不是len(problem)
这是更新后的代码:
line1 += num1.rjust(space)
line2 += op + num2.rjust(space-1) # remove extra space
line3 += "-" * space
line4 += str(result).rjust(space)
if z < len(problems) - 1: # use problems, not problem
line1 += extra_space
line2 += extra_space
line3 += extra_space
line4 += extra_space
所有测试都通过了这些更改。
enter image description here
这段代码 运行 在我的命令行上,总共进行了 6 次测试但失败了 two.it 看起来像额外的 space 我不知道如何解决它。
这里是 link 我的回复 https://repl.it/@seunlaww/SnivelingWateryArchives-1#arithmetic_arranger.py
两个问题:
- 在第 2 行,删除多余的 space
- 在长度检查中,使用
len(problems)
,而不是len(problem)
这是更新后的代码:
line1 += num1.rjust(space)
line2 += op + num2.rjust(space-1) # remove extra space
line3 += "-" * space
line4 += str(result).rjust(space)
if z < len(problems) - 1: # use problems, not problem
line1 += extra_space
line2 += extra_space
line3 += extra_space
line4 += extra_space
所有测试都通过了这些更改。