python学习01

Posted brzp97

tags:

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

python自学阶段总结1
print()
input()
if elif else
while continue break
for...in... continue break

基本数据类型方法
数字
int() 配合base可以将其他进制数转换成十进制数
.bit_length() 当前数字的二进制至少用n位表示
字符串
str()
.capitalize()
.casefold()
.lower() .upper() .title() .islower() .isupper() .istitle()
.swapcase()
.center() .ljust() .rjust()
.count()
.endswith() .startswith()
.find() .index()
.format() .format_map()

.isalnum()
.isalpha)()
.isdecimal()
.isdigit()
.isnumeric()
.isprintable()
.isspace()
.isidentifier()

.join()
.strip() .lstrip() .rstrip() 按元素匹配删除
str.maketrans() .translate() 元素级替换
.replace()
.partithon() .rpartithon()
.split() .splitlines() 根据True,Fales判断是否保留" "

[] 索引,切片
len()
range()
列表
list()
.append()
.extend()
.insert()

.index()
.clear() .pop() .remove()
.copy()
.count()

.reverse()
.sort()

列表转换成字符串.join() or for
del []
元祖
tuple()
del []
字典
.fromkeys() 根据序列,创建字典,指定统一值
.get() 根据key值获取,key不存在时可以指定默认
.pop() .popitem() 删除并将获取
.update() .setdefault()
.keys() .values() .items()
del []




































































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

Python学习_01

[Python]-机器学习Python入门《Python机器学习手册》-01-向量矩阵和数组

01-python学习之路

python学习笔记----01Python的安装

python学习01

Python学习总结 01 配置环境