一、基本类型
Python7种基本数据类型:
Numbers(数字)
String(字符串)
Boolean(布尔) # True Flase
List(列表)
Tuple(元组)
Dictionary(字典)
None(空值)
Python支持四种不同的数字类型:
int(有符号整型)
long(长整型)
float(浮点型)
complex(复数)
type()函数
type() 函数可以查看变量的数据类型
x = 7
print type(x)
二、类型转换
使用str()
,int()
,float()
等 转换
x = 2.2
s = str(x)
可以转的情况下可以使用上面的转换,有不能转的:
s = 'hello'
int(s) // 这儿报错
Python运算符
前者不必多讲,如果你会其他语言。
1)**
:幂 运算符 - 返回x的y次幂
2**3 // 2的3次方
2)//
:取整除
取整除 - 返回商的整数部分
9.0//2.0 得到 4
注意:
x = 9.0 / 2.0
print x #得到4.5
x = 9.0 // 2.0
print x #得到4.0
x = 9 // 2
print x #得到4
3)<>
a <> b 这个运算符类似 a!=b
4)逻辑运算符,是and ,or, not,而不是 &&, ||, !
5)成员运算符
6)身份运算符
帮助函数的用法:
help(str)
len()
函数:查看长度函数
Python中使用中文
# -*- coding: utf-8 -*-
print('你好')
我们加# -*- coding: utf-8 -*-
后,保存源代码时,需要指定为UTF-8编码。为了让Python解释器读取源代码时它UTF-8编码读取,通常在文件开头写上它。