• 技术文章 >Python技术 >Python基础教程

    python如何输入回车

    爱喝马黛茶的安东尼爱喝马黛茶的安东尼2019-10-10 11:22:33原创14019

    Python默认遇到回车的时候,输入结束。所以我们需要更改这个提示符,在遇到空行的时候,输入才结束。

    相关推荐:《Python教程

    raw_input就是从标注输入读取输入,输入的是什么就是什么。

    文档解释:
    The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that.

    stopword = '' # 输入停止符
    str = ''
    for line in iter(raw_input, stopword): # 输入为空行,表示输入结束
      str += line + '\n'
     
    # print (str)  #测试用
    专题推荐:python 输入 回车
    上一篇:Python里面search()和match()的区别有哪些 下一篇:python如何判断字符串以什么结尾

    相关文章推荐

    • python如何编译成exe文件• python如何让函数不返回结果• python如何画函数图像• python如何实现读取某几行的内容

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网