摘要: Pandas 是一个 Python 软件库,它提供了大量能使我们快速便捷地处理数据的函数和方法。一般而言,Pandas 是使 Pyt... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 在python中不同的异常可以用不同的类型(python中统一了类与类别,类型即类)取标识,一个异常标识一种错误。 1.常见语法错误... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 方法一: import syssys.exit() # 退出当前程序,但不重启shell 方法二: exit() # 退出当前程... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(2163) 评论(0) 推荐(0) 编辑
摘要: get和post是http请求的两种基本方法,最直观的区别就是get把参数包含在url中,post是通过request body传递... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 随着十一的来临,我们的钱包又要一次变空了。 尤其还是有女朋友的同志们~ 心疼钱包~ 好吧,废话不多讲 这次我们需要的环境 pytho... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 一.random模块 import random# 随机小数random.random() # 大于0且小于1之间的小数rando... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Python 中,单星号*和双星号**除了作为“乘”和“幂”的数值运算符外,还在列表、元组、字典的操作中有着重要作用。 一、列表(l... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 题目 打印出如下图案(菱形):。 * *** ***** ******* ***** *** * 分析:一... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(37) 评论(0) 推荐(0) 编辑
摘要: from random import randinta1 = [randint(10, 50) for _ in range(5)]... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 方法一:for in循环 from random import randint, samplea1 = {k: randint(1,... 阅读全文
posted @ 2022-10-07 20:26 I'm_江河湖海 阅读(71) 评论(0) 推荐(0) 编辑