码迷,mamicode.com
首页 > 编程语言 > 详细

python入门 python字符串换行显示、字符串太长\连接多行

时间:2019-12-24 13:33:43      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:indent   coding   utf-8   bin   字符   ror   lock   方式   多行   

#coding:utf-8
#/usr/bin/python
"""
2018-11-03
dinghanhua
缩进
换行
"""

"""python严格缩进 4个空格 通过缩进来区分语句块"""
def add(a,b):
    return a+b

def add2(a,b):
return a+b    #故意没缩进,报错IndentationError: expected an indented block


"""字符串太长换行显示 \反斜杠连接多行"""
url = "https://www.cnblogs.com/" \
      "dinghanhua" \
      "/p/9900700.html"
print(url)

"""多行输出,方式1—加换行符,方式2—三重引号保持原样输出"""
str1 ="第一行\n第二行\n第三行"

str2= """第一行
第二行
第三行"""

print(str1)
print(str2)

python入门 python字符串换行显示、字符串太长\连接多行

标签:indent   coding   utf-8   bin   字符   ror   lock   方式   多行   

原文地址:https://www.cnblogs.com/barrywu/p/12090912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!