print中分隔符sep

  • 默認狀況下,sep爲空格
>>> print("hello","world")
hello world
  • 若是要從新定義分隔符,能夠用sep指定
>>> print("hello","world",sep='')
helloworld
>>> print("hello","world",sep=',')
hello,world
相關文章
相關標籤/搜索