蓝绝

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 24 下一页

2022年9月10日 #

摘要: 阅读全文
posted @ 2022-09-10 20:50 蓝绝 阅读(5) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-09-10 20:42 蓝绝 阅读(13) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-09-10 20:41 蓝绝 阅读(19) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-09-10 20:33 蓝绝 阅读(10) 评论(0) 推荐(0) 编辑

摘要: import traceback try: print(' ') print(1/0) except: traceback.print_exc() #print('有异常') E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/Py 阅读全文
posted @ 2022-09-10 20:16 蓝绝 阅读(33) 评论(0) 推荐(0) 编辑

2022年9月9日 #

摘要: #print(10/0) #ZeroDivisionError lst=[11,22,33,44] #print(lst[4]) #IndexError 索引从0开始 dic={'name':'张三','age':20} #print(dic['gender']) #KeyError #print( 阅读全文
posted @ 2022-09-09 15:15 蓝绝 阅读(11) 评论(0) 推荐(0) 编辑

摘要: #try...except...else结构 如果try块中没有抛出异常,则执行else块,如果try中抛出异常,则执行except块. try: a = int(input('请输入第一个整数')) b = int(input('请输入第二个整数')) result = a / b except 阅读全文
posted @ 2022-09-09 15:04 蓝绝 阅读(39) 评论(0) 推荐(0) 编辑

摘要: try: a=int(input('请输入第一个整数')) b=int(input('请输入第二个整数')) result=a/b print('结果为:',result) except ZeroDivisionError: print('对不起,除数不允许为0') except ValueErro 阅读全文
posted @ 2022-09-09 11:48 蓝绝 阅读(16) 评论(0) 推荐(0) 编辑

2022年9月7日 #

摘要: lst=[{'rating':[9.7,2062397],'id':'1292052','type':['犯罪','剧情'],'title':'肖申克的救赎','actors':['蒂姆·罗宾斯','摩根·弗里曼']}, {'rating':[9.6,1528760],'id':'1291546', 阅读全文
posted @ 2022-09-07 21:23 蓝绝 阅读(26) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-09-07 16:05 蓝绝 阅读(26) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 24 下一页