1. python3设置print输出不换行
函数原型
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
对应参数含义如下
- objects -- 复数,表示可以一次输出多个对象。输出多个对象时,需要用 , 分隔。
- sep -- 用来间隔多个对象,默认值是一个空格。
- end -- 用来设定以什么结尾。默认值是换行符 \n,我们可以换成其他字符串。
- file -- 要写入的文件对象。
- flush -- 输出是否被缓存通常决定于 file,但如果 flush 关键字参数为 True,流会被强制刷新。
根据函数定义,默认情况下是每个print打印完成后自动换行的。
如果输出时不想换行,只需要给参数 end 赋值为空。
print (123,end='')
print (456,end='')
# 输出结果如下
123456
2. 内置函数input()
input([prompt])
该函数用于获取用户输入并返回。
具体而言就是从标准输入如键盘等读入一行输入,将其转换成字符串格式,舍弃最末的回车换行符,然后将结果返回。
如果读到EOF
(End of File),将产生EOFError
异常。
简单来讲有两种用法。
-
第一种是无任何参数。用于直接获取用户输入。
input_str = input() print('The inputted string is:', input_str)
Hello world! The inputted string is: Hello world!
-
第二种是在获取输入前先向标准输出写一串提示信息,通常是输出到屏幕,并且在末尾没有换行。
input_str = input('Enter a string:') print('The inputted string is:', input_str)
Enter a string: Hello world! The inputted string is: Hello world!
参考资料
[1] Python input https://www.programiz.com/python-programming/methods/built-in/input
本文作者 :phillee
发表日期 :2021年12月20日
本文链接 :https://www.cnblogs.com/phillee/p/15711921.html
版权声明 :自由转载-非商用-非衍生-保持署名(创意共享3.0许可协议/CC BY-NC-SA 3.0)。转载请注明出处!
限于本人水平,如果文章和代码有表述不当之处,还请不吝赐教。