上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 35 下一页
摘要: # 双系统教程 安装教程(我用的win11+ubuntu): ![](https://img2023.cnblogs.com/blog/3005444/202306/3005444-20230607144757614-1556153233.png) https://www.bilibili.com/ 阅读全文
posted @ 2023-06-07 14:36 __username 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 如图: ![](https://img2023.cnblogs.com/blog/3005444/202306/3005444-20230605094450863-1973741605.png) 要使用SSH建立远程连接,可以使用以下命令: ```shell ssh [选项] [用户名@]主机地址 阅读全文
posted @ 2023-06-05 09:45 __username 阅读(378) 评论(0) 推荐(0) 编辑
摘要: ~~~python import re import aiohttp import asyncio class Asyn: def __init__(self): self.__headers = { 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win6 阅读全文
posted @ 2023-06-04 15:04 __username 阅读(4) 评论(0) 推荐(0) 编辑
摘要: # 解包 ![](https://img2023.cnblogs.com/blog/3005444/202306/3005444-20230604100911235-538410632.png) ![](https://img2023.cnblogs.com/blog/3005444/202306/ 阅读全文
posted @ 2023-06-04 10:29 __username 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2023.cnblogs.com/blog/3005444/202306/3005444-20230602215543405-1548057609.png) 在Python中,序列是一种有序的数据类型,它包括字符串、列表、元组和范围。下面是这些序列类型的简要介绍: 字符 阅读全文
posted @ 2023-06-02 21:57 __username 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1.https://ww2.mathworks.cn/products/matlab/plot-gallery.html?s_tid=srchtitle_gallery_1 2.https://matplotlib.org/ 3.https://seaborn.pydata.org/ 4.https 阅读全文
posted @ 2023-06-02 21:42 __username 阅读(60) 评论(0) 推荐(0) 编辑
摘要: # 安装PyTorch ![](https://img2023.cnblogs.com/blog/3005444/202306/3005444-20230601221306197-763054686.png) pytorch官网 https://pytorch.org/ ![](https://im 阅读全文
posted @ 2023-06-01 22:17 __username 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 在Python中,Faker是一个用于生成伪造数据的库。它可以帮助你创建各种类型的虚假数据,如姓名、地址、电话号码、电子邮件、日期等等。使用Faker可以方便地生成测试数据、填充数据库、进行数据分析和模拟等任务。 要使用Faker库,首先需要安装它。可以使用pip命令在命令行中安装Faker: `` 阅读全文
posted @ 2023-05-31 16:50 __username 阅读(235) 评论(0) 推荐(0) 编辑
摘要: # 需求如下: ![](https://img2023.cnblogs.com/blog/3005444/202305/3005444-20230530172319297-533069589.png) # 实现代码: ## 未优化代码 ~~~python import pandas as pd de 阅读全文
posted @ 2023-05-30 17:28 __username 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 在Python中,以下是被视为`False`的值: 1. `False`:布尔类型的False值。 2. `None`:表示空或缺失的值。 3. `0`:整数类型的零。 4. `0.0`:浮点类型的零。 5. `''`:空字符串。 6. `[]`:空列表。 7. `{}`:空字典。 8. `()`: 阅读全文
posted @ 2023-05-29 09:28 __username 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 35 下一页

本文作者:DIVMonster

本文链接:https://www.cnblogs.com/guangzan/p/12886111.html

版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。