Recommended manual:Python basic introductory tutorial
The default output of print is line wrapping. If you want to achieve no line wrapping, you need to Add end="" at the end of the variable:
x="a"y="b" # 换行输出 print( x ) print( y ) print('---------') # 不换行输出 print( x, end=" " ) print( y, end=" " ) print()
The execution result is as follows:
a b --------- a b
Commonly used escape character methods: \n
#-*-coding:utf-8-*- A = "来看看能不能\n换行。" print (A)
The execution result:
来看看能不能 换行。
Recommended related articles:
1.How to wrap python using cmd
2.How to wrap lines when writing python
Related video recommendations:
1.Little Turtle’s zero-based entry learning Python video tutorial
In Python2.x, the default output of print is newline. If you want to achieve non-newline, you need to add a comma at the end of the variable.
#!/usr/bin/python # -*- coding: UTF-8 -*- x="a" y="b" # 换行输出 print x print y print '---------' # 不换行输出 print x, print y, # 不换行输出 print x,y
#执行结果 a b --------- a b a b
For more Python-related technical articles, please visit the Python Tutorial column to learn!
The above is the detailed content of How to implement newline output in python3. For more information, please follow other related articles on the PHP Chinese website!