为什么在我的代码中使用了os.linesep()?
def GetInstruction():
print(os.linesep)#<--------???
Instruction = input("> ").lower()
return Instruction
答案 0 :(得分:0)
我不知道您为什么使用它,但是来自the docs:
用于在当前平台上分隔(或终止)行的字符串。这可以是单个字符,例如对于POSIX为'\ n',也可以是多个字符,例如对于Windows为'\ r \ n'。
基本上代表当前环境或平台的当前行分隔符。