首页 > 代码库 > python简明手册学习
python简明手册学习
1、行末单独一个反斜杠表示字符串在下一行继续,而不是开始一个新的行。
>>> "This is the first sentence.... This is the second sentence."‘This is the first sentence.This is the second sentence.‘
2、自然字符串,如何需要某些字符串不需要转义,可以添加前缀r或R。
>>> a = r"Newlines are indicated by \n">>> print aNewlines are indicated by \n
3、转换为Unicode字符串
>>> line = u"This is a Unicode string">>> print lineThis is a Unicode string
4、python把程序中用到的任何东西都称为对象,使用变量和字面意义上的常量
#!/usr/bin/env pythoni = 5print ii = i + 1print is = ‘‘‘This is a multi-line string.This is the second line.‘‘‘print s
# python var.py56This is a multi-line string.This is the second line.
python简明手册学习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。