How to implement newline output in python3

Release: 2019-11-23 15:06:35
Original
14061 people have browsed it

How to implement newline output in python3

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()
Copy after login

The execution result is as follows:

a
b
---------
a b
Copy after login

Commonly used escape character methods: \n

#-*-coding:utf-8-*-
A = "来看看能不能\n换行。"
print (A)
Copy after login

The execution result:

来看看能不能
换行。
Copy after login
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
Copy after login
#执行结果
a
b
---------
a b a b
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!