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

python简明手册学习

时间:2016-10-26 09:41:34      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:表示   ica   unicode   str   highlight   bsp   nic   pytho   ted   

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 a
Newlines are indicated by \n

 

3、转换为Unicode字符串

>>> line = u"This is a Unicode string"
>>> print line
This is a Unicode string

 

4、python把程序中用到的任何东西都称为对象,使用变量和字面意义上的常量

#!/usr/bin/env python
i = 5
print i
i = i + 1
print i

s = ‘‘‘This is a multi-line string.
This is the second line.‘‘‘
print s
# python var.py
5
6
This is a multi-line string.
This is the second line.

  

  

python简明手册学习

标签:表示   ica   unicode   str   highlight   bsp   nic   pytho   ted   

原文地址:http://www.cnblogs.com/wangtao1993/p/5999044.html

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