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.(代码片段

学习笔记:python3,代码片段(2017)

python颜色压缩的结果颜色比保存颜色深

Python图像resize前后颜色不一致问题

华为OD机试 - 单词反转(Python)| 真题含思路

python输入输出(二)