一.python 数据类型:数值,字符串,列表,元组,字典。以下操作是在linux 下 ipython中进行
1.数值
1》123  与  “123”的区别
答:123为数值,“123”在python中看做字符串
 
2》数值类型
整型,长整型,浮点型,复数型
 
整型的范围:-2147483648 (-2**31)----4294967296(2**32)
 
长整型:当一个数值大于整整的范围时,他就会变成长整型,如下:
In [3]: a = 19999999999999999999999
In [5]: a   //打印a的数值
Out[5]: 19999999999999999999999L
In [4]: type(a)  //查看a的类型,为长整型。
Out[4]: long
 
浮点型:浮点型就是带小数点的,科学计数法也属于浮点型。
In [6]: a = 0.345
 
In [7]: type(a)
Out[7]: float
 
In [8]: 3e+7
Out[8]: 30000000.0
 
除数与被除数只要有一个是浮点型,那结果就为浮点型。
In [10]: 3 / 2
Out[10]: 1
In [11]: type(3 / 2)
Out[11]: int
 
In [12]: 3 / 2.0
Out[12]: 1.5
 
In [13]: type(3 / 2.0)
Out[13]: float
 
复数型--complex:在后面加个“j”,就表示复数型。如:-3.14j     8.32e-32j
In [14]: a = 35j
 
In [15]: type(a)
Out[15]: complex
 
2.字符串--string
1》定义字符串的三种方法:单引号,双引号,三引号
-str = ‘this  is  a  string’    //单引号与双引号在python下没有任何区别
-str = “this is  a  string”
-str = ‘’‘this  is  a  string’‘’  //三重引号,除了能定义字符串外,还可以用作注释
 
In [22]: a = '''helll
   ....: world'''   ///三个引号,可以自行添加换行符
In [24]: print(a)
helll
world
 
2>通过索引了,来取字符。叫切片
In [25]: a = 'abcde'
 
In [27]: a[0]  //第一个索引为0
Out[27]: 'a'
 
In [26]: a[1]
Out[26]: 'b'
 
In [28]: a[2]
Out[28]: 'c'
 
In [29]: a[-1]  //负1表示最后一个索引
Out[29]: 'e'
 
3>序列和切片。
序列 abcde   从前往后分别对应 0(a)1(b)2(c)3(d)4(e) ,从后往前对应-1(e) -2(d) -3(c) -4(b) -5(a)
 
从左往右,取字符串中连续的几个字母:
In [31]: a = 'abcdef'
 
In [32]: a[0:2]   //取ab两个字符,索引为2的不包括在内,所以c没显示出来。
Out[32]: 'ab'
 
In [33]: a[:2]   //还可以省略第一个索引。
Out[33]: 'ab'
 
In [34]: a[1:]  //从第一个开始取,取到最后。可以把最后一个索引省略。
Out[34]: 'bcdef'
 
In [35]: a[:]  //第一个索引省略,第二个索引省略,表示取全部。
Out[35]: 'abcdef'
 
从右往左取
In [36]: a[:-1]   //从第一个索引开始取,但不包括最后一个索引。也就是不取f
Out[36]: 'abcde'
 
In [37]: a[1:-1]   //从第一个索引开始取,取到最后,但不包括最后一个f字母
Out[37]: 'bcde'
 
In [39]: a[::1]    //从第一个开始取,取到最后,步长为1
Out[39]: 'abcdef'
 
In [40]: a[::2]  //从第一个开始取,取到最后,步长为2
Out[40]: 'ace'
 
从左往右取出b和c
In [45]: a
Out[45]: 'abcde'
 
In [46]: a[-4:-2]   //最后的-2是不包括在内的,默认从左到右的顺序,所以先写-4,在写-2
Out[46]: 'bc'
 
从右到左取出d和c
In [48]: a
Out[48]: 'abcde'
 
In [49]: a[-2:-4:-1]    // 负1 表示从右往左取,
Out[49]: 'dc'
 
In [7]: a = 'abcdef'   //取最后两位
In [8]: a[-2:]
Out[8]: 'ef'
 
 
二, 函数。以下操作是在pycharm中进行。
1> round
# 默认保留1为小数
#以四舍五入的方式计算
g = 3.5
h = 2.45
print('g',round(g))
print('h',round(h))
 
>>>  ('g', 4.0)
            ('h', 2.0)
 
 
2>round(float浮点型,精度)
#先进行四舍五入的运算,小数点最后一位必须为偶数
代码如下:
a = 3.046  正常的浮点型是四舍五入。但是碰到.5的情况,要求精度的前一位是偶数则四舍五入,如果要求精度的后一位是奇数则舍弃。
 
b = 2.143
c = 3.447
d = 3.567  .5情况,要求的精度是2,精度的前一位是7,为奇数舍弃。所以取值为d=3.56
e = 2.555  但是碰到.5的情况,如果要取舍的位数前的小数是奇数,则直接舍弃,如果偶数这向上取舍
 
f = 1.545
print('a',round(a,2))
print('b',round(b,2))
print('c',round(c,2))
print('d',round(d,2))
print('e',round(e,2))
print('f',round(f,2))
 
>>>  ('a', 3.05)
            ('b', 2.14)
                ('c', 3.45)
             ('d', 3.57)
             ('e', 2.56)
             ('f', 1.54)
 
 
三. 字符串常用方法。pycharm中操作
1》示例:
#/usr/bin/python
#coding=utf-8
#@Time   :2017/10/11 16:20
#@Auther :liuzhenchuan
#@File   :demon-str.py
s = 'hello'
print(dir(s))
print(s[0],s[1],s[2])
 
运行如下::
['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
('h', 'e', 'l')
 
 
2》常用字符串方法
#find    查找
#replace    替换
#split     以什么为分割符
#join
#strip
#format
 
-----find 解析
rfind:从右边开始找
lfind:从左边开始找
s1 = 'dingeigliuzhenchuan08jo'
print(s1.find('liu'))
print(s1.find('abdliu'))
运行如下:
7   
-1   //找不到就会返回负1
 
 
----replace 解析。替换
s1 = 'dingeigliuzhenchuan08jo'
print(s1.replace('liu','hello'))
 
运行如下:
dingeighellozhenchuan08jo
 
 
 
---split解析,返回为列表。以什么为分割符
s2 = 'ttion:eottn:aacng'
print(s2.split(':'))
运行如下:
['ttion', 'eottn', 'aacng']
 
 
----join()   连接字符串数组。将字符串,元组,列表中的元素以指定的字符(分隔符)连接生成一个新的字符串
----os.path.join()   将多个路径组合后返回
 
s3 = '12:34:56'
print('word'.join(s3))
print('word'.join(s3.split(':')))
运行如下:
1word2word3word4word5word6
12word34word56
 
 
---strip() 方法用于移除字符串头尾指定的字符(默认为空格)
strip() 方法语法:
   str.strip([chars])
   chars:移除指定的字符串
rstrip():从右边开始去掉
lstrip():从左边开始去掉
 
#/usr/bin/python
#coding=utf-8
#@Time   :2017/10/12 21:12
#@Auther :liuzhenchuan
#@File   :字符串.py
s1 = '  11ab  11cd  11  '
print(s1)
print(s1.rstrip())
print(s1.lstrip())
print s1.strip('  11')  //移除两个空格和两个11的字符
运行如下:
  11ab  11cd  11    //打印s1字符串
  11ab  11cd  11    //从右边开始去掉空格,左边留有空格
11ab  11cd  11      //从左边开始去掉空格,右边留有空格
ab  11cd
 
 
---format()   字符串格式化
%s:代表的是字符串
%d:代表的是整数‘
%f:代表的是浮点型
 
#format  格式化字符串
name = 'liuzhenchuan'
print 'hello '+name
print 'hello %s' % name
print('hello {0}').format(name)
 
运行如下:
hello liuzhenchuan
hello liuzhenchuan
hello liuzhenchuan
 
 
多个变量的情况
#format  格式化字符串
name = 'liuzhenchuan'
age =
print('hello {0},my age is: {1}'.format(name,age))
print '{name}:{age}'.format(name='ajing',age='20')
 
运行如下:
hello liuzhenchuan,my age is: 20
ajing:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

python 基础 1.5 python 数据类型(一)--整型 浮点型 布尔型及字符串和常用方法的更多相关文章

  1. 『无为则无心』Python基础 — 8、Python中的数据类型(数值、布尔、字符串)

    目录 1.数据类型介绍 2.数值型(Number) 3.布尔型(bool) 4.None(空值) 5.常量 6.字符串(String) 1.数据类型介绍 (1)什么是数据类型 在生活中,我们日常使用的 ...

  2. python基础系列教程——Python中的编码问题,中文乱码问题

    python基础系列教程——Python中的编码问题,中文乱码问题 如果不声明编码,则中文会报错,即使是注释也会报错. # -*- coding: UTF-8 -*- 或者 #coding=utf-8 ...

  3. python基础系列教程——Python库的安装与卸载

    python基础系列教程——Python库的安装与卸载 2.1 Python库的安装 window下python2.python3安装包的方法 2.1.1在线安装 安装好python.设置好环境变量后 ...

  4. python基础系列教程——Python的安装与测试:python的IDE工具PyDev和pycharm,anaconda

    ---恢复内容开始--- python基础系列教程——Python的安装与测试:python的IDE工具PyDev和pycharm,anaconda 从头开启python的开发环境搭建.安装比较简单, ...

  5. 《从零开始学Swift》学习笔记(Day 13)——数据类型之整型和浮点型

    Swift 2.0学习笔记(Day 13)——数据类型之整型和浮点型 原创文章,欢迎转载.转载请注明:关东升的博客    Swift提供8.16.32.64位形式的有符号及无符号整数.这些整数类型遵循 ...

  6. python基础之五大标准数据类型

    学习一门语言,往往都是从Hello World开始. 但是笔者认为,在一个黑框框中输出一个"你好,世界"并没有什么了不起,要看透事物的本质,熟悉一门语言,就要了解其底层,就是我们常 ...

  7. python基础(二)-------数据类型

    python开发基础篇(二)数据类型 python数据类型有: 1.数字 1.只能存放一个值 2.一经定义,不可更改 3.直接访问 主要的分类为:整型,长整型,(python2有长整型的概念Pytho ...

  8. python基础-第二篇-基本数据类型

    一.运算符 1.算数运算: 算数运算符相信大家都不陌生吧,尤其是加减乘除,好!那我就带着大家看看最后三个,这三个到底是干什么玩意的? %,取两数相除的余数,看图: **,x的多少次幂,看图: //,取 ...

  9. Python基础之模块、数据类型及数据类型转换

    一.模块 1.标准库 不需要安装,直接调入使用的模块. import sys模块: import sys print(sys.path) #打印环境变量绝对路径 print(sys.argv) #打印 ...

随机推荐

  1. 误加all_load引起的程序报错

    一.为什么要加-all_load 在64位的mac系统和iOS系统下,链接器有一个bug,会导致只包含有类别的静态库无法使用-ObjC标志来加载文件.解决方法是使用-all_load或者-force_ ...

  2. Axisfault faultcode:Server.userException异常

    ---恢复内容开始--- Axisfault faultcode:Server.userException异常 AxisFault faultCode: {http://schemas.xmlsoap ...

  3. (9)JavaScript-DOM(文档对象模型)

    DOM是针对 HTML 和 XML 文档的一个 API ,描绘了一个层次化的节点树,允许开发人员添加.移除和修改页面的某一部分  一.节点层次 <html> <head> &l ...

  4. Akka 和 μJavaActors入门

         Akka和μJavaActorsμJavaActors均是java的Actor库,其中Akka提供了叫为完整的Actor开发框架,较为庞大,学习成本很高,μJavaActors 是一个轻量级 ...

  5. Linux笔记:vim

    文件搜索后显示高亮,即使退出编辑高亮依然存在.使用以下几个方法: 1)指令模式下运行:nohlsearch 2)运行set nohlsearc,可永久关闭搜索高亮 3)搜索任意不存在的字符串

  6. Hdoj 2509 Be the Winner

    Diciption Let's consider m apples divided into n groups. Each group contains no more than 100 apples ...

  7. Meet Dgraph — an open source, scalable, distributed, highly available and fast graph databas

    https://dgraph.io/ Meet Dgraph — an open source, scalable, distributed, highly available and fast gr ...

  8. UIView之userInteractionEnabled属性介绍-特殊子类覆盖多见于UIImageView和UILabel

    属性作用 该属性值为布尔类型,如属性本身的名称所释,该属性决定UIView是否接受并响应用户的交互. 当值设置为NO后,UIView会忽略那些原本应该发生在其自身的诸如touch和keyboard等用 ...

  9. Scut游戏服务器引擎5.6.3.5发布

    版本:5.6.3.5 (2013-11-25) 1. 优化实体ChangeKey队列,减少写库IO(默认为5分钟写入一次数据库) 2. 优化Protobuf序列化启用自动GZip压缩,减少Redis内 ...

  10. 处理类型(typedef,uisng,auto,decltype)

    一:类型别名是一个名字,它是某种类型的定价.有两种方法定义类型别名: 1.使用typedef关键字,如: typedef int *Int_Ptr Int_Ptr p=nullptr;   //Int ...