关于os.linesep的python的os模块

时间:2019-01-03 22:42:26

标签: python python-3.x python-2.7 python-requests

为什么在我的代码中使用了os.linesep()?

def GetInstruction():
    print(os.linesep)#<--------???
    Instruction = input("> ").lower()
    return Instruction

1 个答案:

答案 0 :(得分:0)

我不知道您为什么使用它,但是来自the docs

  

用于在当前平台上分隔(或终止)行的字符串。这可以是单个字符,例如对于POSIX为'\ n',也可以是多个字符,例如对于Windows为'\ r \ n'。

基本上代表当前环境或平台的当前行分隔符。