python基础
对python初学者有很大帮助,主要包括对列表、元组、字典、集合、字符串、函数、类封装等进行介绍。
小飞龙程序员
想赢并不一定要有实力和本钱,最重要的是有信心和胆识,放弃,就一定会输,尝试还有一半的机会。
展开
-
python脚本----区分车底车顶车侧面数据集
【代码】python脚本----区分车底车顶车侧面数据集。原创 2023-03-07 13:11:28 · 160 阅读 · 0 评论 -
python-----修改文件名
【代码】python-----修改文件名。原创 2023-01-25 16:08:54 · 349 阅读 · 0 评论 -
python基础------时间戳、时间组、时间串、日期相互转化和日历以及练习
import time# 时间戳tt=time.time()print(tt)# 时间组b=time.localtime(tt)print(b)# 时间组转化为时间串(striftime,asctime)c=time.strftime('%Y/%m/%d %H:%M:%S',b)e=time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())h=time.asctime(b)print(c)print(e)print(h)# 时间组转化原创 2021-11-03 12:08:48 · 705 阅读 · 0 评论 -
python基础------日期、时间组、时间串、时间戳之间相互转化
时间串、时间组、时间戳相互转化import time时间戳tt=time.time()print(tt)时间组b=time.localtime(tt)print(b)时间组转化为时间串(striftime,asctime)c=time.strftime('%Y/%m/%d %H:%M:%S',b)e=time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())h=time.asctime(b)print(c)print(e)print(原创 2021-10-20 09:41:01 · 261 阅读 · 0 评论 -
python基础------字符串、列表、元组、字典、集合、函数
1. 字符串2. 列表列表的删除方法:2.1. 列表的增、删、改、查、排序、遍历# a)创建一个空列表。ls=[]# b)向列表中添加元素,'红烧鸡翅',并查看列表ls.append('红烧鸡翅')# c)接着向列表中最前面添加1个元素,32,并查看列表ls.insert(0,32)print(ls)# d)接着向列表中最前面添加1个元素,'红烧肉',并查看列表ls.append('红烧肉')print(ls)# e)删除元素,红烧鸡翅,并查看列表ls.remove('原创 2021-11-05 12:50:59 · 346 阅读 · 0 评论 -
python基础------文件读写操作、re、os和sys模块
# ①打开并读取文件 info.txt中的内容# ②将读到的文件内容,存入到变量emp_infoimport re,sys,os,datetime,calendar,timewith open('info.txt','rt',encoding='utf8') as file: emp_info=file.read() print(emp_info)# ③在emp_info内,用正则获取到新师面试的日期,输出出来a=re.findall(r'[\d]{4}-[\d]{2}-[\d]{原创 2021-11-03 13:48:18 · 1720 阅读 · 0 评论 -
python基础------类与对象之间的关系,封装、继承、多态
# 1.写一个员工类BwEmployeeclass BwEmployee(object):# (2)添加构造方法,包含5个形参,保存外部传入值,分别给以下实例属性赋值:# 专业prof,姓名name,职务job(默认讲师),年龄__age(私有属性,默认18),评委打分wk_grade(默认[6,7,8,9,10]) def __init__(self,prof,name,job='讲师',age=18,wk_grade=[6.0,7.0,8.0,9.0,10.0]): se原创 2021-11-03 12:07:43 · 351 阅读 · 0 评论 -
python基础------绘制条形图、直方图、饼图、热力图、极坐标图、进度条
1.绘制直方图plt.hist()各种参数含义data:必选参数,绘图数据bins:直方图长条数目,默认10facecolor:长条形的颜色edgecolor:长条形边框颜色alpha:透明度nprmed:是否将得到的图归一化,默认为0(代表不归一化);为1时为归一化。import matplotlib.pyplot as pltimport numpy as npimport matplotlib.pylab as plb#设置中文字体plt.rcParams['font.sa原创 2021-10-20 09:39:59 · 3235 阅读 · 0 评论 -
python基础------正则(re)
import re#从开头位置查找,只查找一次result=re.match('\d\d\d\d', '1994hs4jkk')print(result.group())#从头至尾查找,只查找一个值,返回ret=re.search(r'\d+','阅读次数为9999')print(ret.group())re.findall('')匹配单个字符串import reret = re.match(".","a")print(ret.group())ret = re.match("原创 2021-10-28 18:08:16 · 566 阅读 · 1 评论 -
python基础------异常处理(try...except....else....finally)
# 使用异常处理猜数字游戏,输入非整数,抛出异常。# 1、计算机随机生成一个数# 2、用户输入一个数字# 3、进行比对# 4、用户输入非整数,异常处理import randoma=random.randint(1,10)try: a = random.randint(1, 10) b=int(input('请输入一个数字:'))except ValueError: print('值异常')else: if b>a: print('值大了原创 2021-11-03 14:01:08 · 890 阅读 · 0 评论