0

我是一个新手编剧,我正在使用交互式 shell 测试我的脚本-i

这是我的脚本的一部分:

shelp = "min               shows the number of minutes\n\
sec               shows the number of seconds\n\
min + [NUMBER]    adds the number of minutes\n\
sec + [NUMBER]    adds the number of seconds"

当我以交互方式运行 shelp 时,它显示:

'min               shows the number of minutes\nsec               shows the number of seconds\nmin + [NUMBER]    adds the number of minutes\nsec + [NUMBER]    adds the number of seconds'

我不确定这是否是它应该做的,但有没有办法删除\n同时仍然能够以交互方式运行我的脚本?

对不起,如果这已经得到回答或者我的事实有误

4

1 回答 1

1

听起来您正在寻找print()

>>> print(shelp)
min               shows the number of minutes
sec               shows the number of seconds
min + [NUMBER]    adds the number of minutes
sec + [NUMBER]    adds the number of seconds
>>>

\n代表换行符,如果您使用print(). 如果您只是shelp自己键入,则交互式 shell 会打印字符串的表示形式\n,用于显示换行符的位置。

于 2013-05-27T04:15:08.513 回答