python 基础知识

(1)除法

>>>1/2

0

1,普通除法:浮点型

>>>1.0/2.0

0.5

>>>1.0/2

0.5

>>>1/2.0

0.5

2,普通除法:导入模块

>>>from __future__ import division

3,整除

>>>1.0//2.0

0.0

(2)幂运算符(乘方)

>>>-3**2

-9

>>>(-3)**2

9

(3)十六进制与八进制

>>>0X4F

175

>>>010

8

(4)输入

>>>a=input("The number:")

a的类型就是输入的类型

>>>a=raw_input(""The number")

a的类型是字符型

(5)长字符串,原始字符串和Unicode

>>>"""hello

world"""

>>>r"c:\nowhere"

不进行转义

>>>u"欢迎进入"

默认为8位ASCII码,Unicode字符串存储为16位Unicode字符

你可能感兴趣的:(python 基础知识)