Python简明教程:基本概念

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python简明教程:基本概念相关的知识,希望对你有一定的参考价值。

1 字面意义上的常量,如2、‘This is ok‘这样的字符串

>>> print(‘a,2,3‘)

a,2,3


2 字符串

  • 单引号(‘)

    使用单引号指示字符串,类似shell中的强引用,所有的空格、制表符照原样保留。

>>> print(‘This is ok‘)

This is ok


  • 双引号(“)

    在双引号中的字符串与单引号中的字符串使用完全相同

>>> print("This is ok")

This is ok


  • 三引号(‘‘‘)

    利用三引号,可以指示一个多行的字符串,可以在三引号中自由的使用单引号和双引号。

>>> ‘‘‘This is am string.This is the first line.

... This is the second line.

... "What‘s your name?" Lasked.

... He said "Bond,JamesBond."‘‘‘

‘This is am string.This is the first line.\nThis is the second line.\n"What\‘s your name?" Lasked.\nHe said "Bond,JamesBond."‘


  • 转义符

>>> ‘what \‘s your name‘            #在单引号中实现单引号的使用

"what ‘s your name"

或使用双引号

>>> "what‘your name"

"what‘your name"

>>> "This is \"ok\","               #双引号中实现双引号的引用

‘This is "ok",‘

备注:行尾单独反斜杠,表示字符串在下一行继续,如:

>>> ‘This is ok\

... ,hello‘

‘This is ok,hello‘


  • 自然字符串

    如果不需要转义符那样特别处理的字符串,那么可以给字符串加上前缀r或R来指定一个自然字符串

>>> r‘New line are by \n‘

‘New line are by \\n‘



本文出自 “一万年太久,只争朝夕” 博客,请务必保留此出处http://zengwj1949.blog.51cto.com/10747365/1925662

以上是关于Python简明教程:基本概念的主要内容,如果未能解决你的问题,请参考以下文章

测试教程网.unittest教程.1. 基本概念

Python的基本概念

Python学习之心路历程------第一天:基本概念

Python学习之心路历程------第一天:基本概念

Python学习之心路历程------第一天:基本概念

python学习笔记面向对象基本概念