03 2023 档案

摘要:实验任务1 task1.py 源代码 View Code 运行截图 实验任务2 task2.py 源代码 View Code 运行截图 实验任务3 task3.py 源代码 View Code 运行截图 实验任务4 task4.py 源代码 View Code 实验任务5 task5.py 源代码 阅读全文
posted @ 2023-03-25 16:15 娄泽涛 阅读(23) 评论(0) 推荐(0)
摘要:实验任务一 源代码task1_1.py View Code 运行截图 源代码task1_2.py View Code 运行截图 源代码task1_3.py 1 name1,age1='Bill',19 2 name2,age2='Hellen',18 3 title='personnel Infor 阅读全文
posted @ 2023-03-15 00:50 娄泽涛 阅读(42) 评论(0) 推荐(0)
摘要:1 ans1=0.1+0.2 2 print(f'0.1+0.2={ans1}') 3 4 import decimal 5 6 ans2=decimal.Decimal('0.1')+decimal.Decimal('0.2') 7 print(f'0.1+0.2={ans2}') View Co 阅读全文
posted @ 2023-03-13 21:24 娄泽涛 阅读(10) 评论(0) 推荐(0)