python基础

Posted

tags:

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

用Python编程是一件愉快的事

为编程问题提供的完美解决方案--Python

把软件做的很简单以至于找不到缺陷,把软件做的很复杂以至于找不到明显缺陷

>>> print ‘hello,world‘

hello,world


[email protected]:~/py$ which python

/usr/bin/python


Python区别大小写

#右边的内容都是注释


#!/usr/bin/python   #开始行

#filename:test.py

print ‘hello python‘


chmod a+x  test.py

./test.py


echo $PATH

PATH=$PATH:/home/liuyu/py/


help()获取帮助信息


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

转义字符\

字符串中行尾的\表示续行符  

>>> ‘this is a \

... test string‘

‘this is a test string‘


自然字符串:r‘this a ziran string‘

自然字符串内的数据格式都会原样输出

>>> r"let‘s go /n jump /t "

"let‘s go /n jump /t "


Unicode字符串:u‘this is a unicode string‘


字符串是不可变的


把两个字符串相邻放着,他们就会连接到一起

>>> ‘what is‘‘your name‘

‘what isyour name‘


变量的命名:只能字母和下划线开通,由字母数字下划线组成

缩进在Python中是相当重要,他能够决定逻辑行的层级

同一层次的语句必须有相同的缩进


运算符:+  -  *  /  %  //   <<  >>   &   |  ^  ~   >   <   !=   >=   <=   ==  not  True   False   and  or   in   not in   is  is not

优先级:使用()来明确


以上是关于python基础的主要内容,如果未能解决你的问题,请参考以下文章

001--python全栈--基础知识--python安装

Python基础之函数

python 目录

python基础

人生苦短,我用Python(目录)

Python基础--Python3基础语法