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

简明python教程

时间:2017-02-03 19:38:45      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:查询   code   second   字符串   python版本   blog   hello   string   转义符   

linux查询python版本:python -V

linux进入python:python

退出python:CTRL+D

 

使用源文件:helloworld.py

运行这个程序:python helloworld.py

 

目录添加到PATH变量中:PATH=$PATH:/home/swaroop/mydir完成。其中“/home/swaroop/mydir ”是我想要添加到PATH变量中的目录。

 

python中字符串使用:

(1)使用单引号(‘)

‘Quote me on this

(2)使用双引号(“)

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

" What‘s your name?"

(3)使用三引号(”’或者“‘”’)

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

‘‘‘ This is a multi-line string.This is the first line.This is the second line."wahts your name?,"I asked.He said "Bond,James Bond. " ‘‘‘

(4)转义符

在字符串中输出’ " \,使用\‘ \" \\

注意:“This is the first sentence.\

This is the second sentence.”=====>等价于“This is the first sentence.This is the second sentence.”

简明python教程

标签:查询   code   second   字符串   python版本   blog   hello   string   转义符   

原文地址:http://www.cnblogs.com/Caden-liu8888/p/6363203.html

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