资料:
《笨办法学Python》阅读地址:https://www.bookstack.cn/read/LearnPython3TheHardWay《廖雪峰Python教程》阅读地址:http://t.cn/RK0qGu7
《机器学习numpy与pandas基础》:https://zhuanlan.zhihu.com/p/639733816
《matplotlib绘图可视化知识点整理》阅读地址:http://t.cn/RqDxDo8
工具anaconda:http://t.cn/RW92Dcn
爬虫:
《 1.1 requests库的安装与使用》阅读地址:http://t.cn/RTuUuf7
《1.2 BS4库的安装与使用》阅读地址:http://t.cn/RTu4PLz
《1.5 爬虫实践: 获取百度贴吧内容》阅读地址:http://t.cn/RTu4ZbV
《1.7 爬虫实践: 排行榜小说批量下载》阅读地址:http://t.cn/RTu4UHw
《1.8 爬虫实践: 电影排行榜和图片批量下载》阅读地址:http://t.cn/RTu45gz
height = 1.75
weight = 80.5
BMI = weight/height*height
print(BMI)
if BMI<18.5:
print("too light")
elif 18.5< BMI <20:
print("正常")
else:
print("OK")
score = 'B'
match score:
case 'A':
print('score is A.')
case 'B':
print('score is B.')
case 'C':
print('score is C.')
case _: # _表示匹配到其他任何情况,类似于 C 和 Java 中的default:
print('score is 其他.')
name = ["zxx","djw","zy"]
for x in name:
print(x)
if x=="djw":
break #跳出循环
number = 10
while number<100:
print("too small")
number = number+1
if number%2==0:
continue #跳出当前循环
print(number)
# a,b是必选参数,c是默认参数
# *args是可变参数,args接收的是一个tuple;
# **kw是关键字参数,kw接收的是一个dict。
# 命名关键字参数需要一个特殊分隔符*,*后面的参数被视为命名关键字参数。
def f1(a, b, c=0, *args, **kw):
print('a =', a, 'b =', b, 'c =', c, 'args =', args, 'kw =', kw)
>>> f1(1, 2)
a = 1 b = 2 c = 0 args = () kw = {}
>>> f1(1, 2, c=3)
a = 1 b = 2 c = 3 args = () kw = {}
>>> f1(1, 2, 3, 'a', 'b')
a = 1 b = 2 c = 3 args = ('a', 'b') kw = {}
>>> f1(1, 2, 3, 'a', 'b', x=99)
a = 1 b = 2 c = 3 args = ('a', 'b') kw = {'x': 99}
def f2(a, b, c=0, *, d, **kw):
print('a =', a, 'b =', b, 'c =', c, 'd =', d, 'kw =', kw)
>>> f2(1, 2, d=99, ext=None)
a = 1 b = 2 c = 0 d = 99 kw = {'ext': None}