自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 2021-04-16

Datawhale 零基础入门数据挖掘-Task2 数据分析 二、 EDA-数据探索性分析 Tip:此部分为零基础入门数据挖掘的 Task2 EDA-数据探索性分析 部分,带你来了解数据,熟悉数据,和数据做朋友,欢迎大家后续多多交流。 赛题:零基础入门数据挖掘 - 二手车交易价格预测 地址:https://tianchi.aliyun.com/competition/entrance/231784/introduction?spm=5176.12281957.1004.1.38b02448ausjSX 2.

2021-04-16 23:15:21 76

原创 python 第三天打卡

运行以下代码会出错 try: print('try...') r = 10 / 0 print('result:', r) except ZeroDivisionError as e: print('except:', e) finally: print('finally...') print('END') 出错如下 try... except: division by zero finally... END 可用不同的语句块except处理 try: p

2020-07-25 23:47:30 54

原创 第二次打卡

w=input('weight:') h=input('height:') weight=float(w) height=float(h) B=weight/(height*height) if B>32: print('严重肥胖') elif B>=28: print('肥胖') elif B>=25: print('过重') elif B>=18.5: print('正常') else: print('过轻') names = ['M

2020-07-23 22:36:38 213

原创 第一次打卡python

第一次打卡 print('The quick brown fox','jumps over','the lazy dog') name=input('please enter your name:')` print(300+300) ord('A') chr(66) '中文'.encode('utf-8') b'\xe4\xb8\xad\xe6\x96\x87'.decode('utf-8',errors='ignore') True and True 5>3 and 3>1 s1=7

2020-07-22 23:10:19 106

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除