python输入输出(二)
Posted jwang106
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python输入输出(二)相关的知识,希望对你有一定的参考价值。
输出
>>> print(5)
5
>>> print(5*6)
30
>>> s1 = "hello"
>>> print(s1)
hello
>>> print("hello")
hello
>>> print(5, s1)
5 hello
>>> print("My age is 5")
My age is 5
>>> age = 5
>>> print("My age is %d" % age)
My age is 5
输入
<br/><br/> >>> a = input() 1 >>> a ‘1‘ >>> a = input("please enter your name:") please enter your name:jwang106 >>> a ‘jwang106‘
]
以上是关于python输入输出(二)的主要内容,如果未能解决你的问题,请参考以下文章
java缓冲字符字节输入输出流:java.io.BufferedReaderjava.io.BufferedWriterjava.io.BufferedInputStreamjava.io.(代码片段