首页 > 代码库 > 14、python基础
14、python基础
一 标准数据类型
1 整形和浮点形
python2.*与python3.*关于整型的区别
python2.*
在32位机器上,整数的位数为32位,取值范围为-2**31~2**31-1,即-2147483648~2147483647在64位系统上,整数的位数为64位,取值范围为-2**63~2**63-1,即-9223372036854775808~9223372036854775807
python3.*整形长度无限制
查看方式:
整形: print(type(n))
浮点形: print(type(f))
2 特点
a.只能存放一个值
b.一经定义,不可更改
c.直接访问
例:x=10
print(id(x))
x=11
print(id(11))
3字符串类型
s=‘hello Word’
二 字符串常用操作
1 去掉空格:
命令输入用户名: name=input(‘username: ’)
去掉空格 name.strip()
2 首字母大写
x=‘hello’
print(x.capitalize())
3 所有字母大写
x=‘hello’
print(x.upper())
4 居中显示
x.‘hello’
print(x.center(30,‘#’))
5 统计某个字符的长度 空格也算字符
x=‘hello love‘
print(x.count(l)) 找到l位置
print(x.count(‘1’,0,4)) #0 1 2 3
6 以()结尾
x=‘hello’
print(x.endswith())
7 以()开头
print(x.startswith())
8 找相应索引的值
x=‘hello’
print(x.find())
9 格式化字符串,和写入内容
msg=‘Name:{},age:{},sex:{}’
print(msg.format())
10 查看某个字符的索引
x=‘hello word’
print(x.index() )
11 显示处 判断结果为真
x=‘123’
print(x.isdigit())
12 替换
msg=‘hello alex’
print(msg.replace(‘x’,‘X’))
13 分割
print(x.split())
14、python基础
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。