Input and Output
Posted xuhaojun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Input and Output相关的知识,希望对你有一定的参考价值。
Python has ways to convert any value to a string: pass it to the repr()
or str()
functions.
这两者都是将值转变为string类型,但是有区别:
str()得到的string类型变量会执行转义等命令,而repr()则直接照搬。
hello = ‘hello, world ‘ hellos = repr(hello) helloss = str(hello) print(hellos) print(helloss) print(hellos) ‘hello, world ‘ hello, world ‘hello, world ‘
以上是关于Input and Output的主要内容,如果未能解决你的问题,请参考以下文章
C lang:character input and output
[20160704]Addition program that use JOptionPane for input and output
[Language]File Input and Output
新手学Python之学习官网教程(七: Input and Output)
Linux部署Django:报错 nohup: ignoring input and appending output to ‘nohup.out’