Home>Article>Backend Development> How to implement newline output in python3

How to implement newline output in python3

尚
Original
2019-06-27 10:21:55 13992browse

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()

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 thePython Tutorialcolumn 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!

Statement:
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
Previous article:In python or how to express Next article:In python or how to express