Python
SEEcarrot
这个作者很懒,什么都没留下…
展开
-
python网上下载视频,音乐
打开cmdPip3 install you-get下载方式① you-get -o E:/1 http://www.meipai.com/media/454570774下载方式②(带有清晰度): you-get -i +视频链接 清晰度you-get -i +视频链接 清晰度那么我们在cmd中输入:-format=mp4sd摘抄自:https://www.cnblogs.com/ningjiabing/p/11246240.html...转载 2020-10-23 09:38:34 · 220 阅读 · 0 评论 -
python制作词云图
import wordcloud #导入词云库import numpy as npimport matplotlib.pyplot as pltimport PILimport jiebaimport rewith open(r'D:\python3.7\ZG_jiaoyu\coding\stage_2_coding\you_get1\text2.txt',encoding='gbk') as f: #txt如果存储中文用gbk, 英文用 utf8 text2 = f.readline转载 2020-10-22 21:24:33 · 290 阅读 · 0 评论 -
python局域网内通过python命令,在两个电脑中传输单个文件
设备A:第一步:进入到要传输的文件夹第二步:进入命令行,输入ipconfig 获取IP地址第三步:python -m http.server 端口号设备B:输入设备A的IP地址 : 端口号原创 2020-10-15 22:01:53 · 554 阅读 · 0 评论 -
Django 403 forbid表单 {% csrf_token %}
Forbidden (403)CSRF verification failed. Request aborted.You are seeing this message because this site requires a CSRF cookie when submitting forms. This cookie is required for security reasons, to ensure that your browser is not being hijacked by third原创 2020-10-12 10:05:19 · 336 阅读 · 0 评论 -
初代-百度翻译查询单词。百度贴吧是表面,百度翻译是进入
import requestshere_put=input("please search in here:")base_url="https://fanyi.baidu.com/sug"mes={ "kw": here_put}response = requests.post(base_url,data=mes)out=response.json() #字符串转字典listdata=out["data"]for i in listdata: print(i)...原创 2020-08-05 19:48:32 · 357 阅读 · 0 评论 -
初代-自己设置进入贴吧的窗口-涉及爬虫
import requestsa = input("请输入您要进入的吧")# urlheader={"user-agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36"}base_url=f"https://tieba.baidu.com/f?ie=utf-8&kw={a}&fr=search"#原创 2020-08-05 19:09:53 · 166 阅读 · 0 评论 -
初代-个人简历
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title> 个人简历 </title> <style> caption{ font-size: 30px; font-weight: bolder; }原创 2020-07-29 08:46:15 · 153 阅读 · 0 评论 -
初代-Python网页调查问卷
<!--7月25日调查问卷--><html> <head> <title> 调查问卷 </title> </head> <body> <h1 style = "color:red;text-align:center"> How do you communicate with your direct原创 2020-07-27 08:42:01 · 591 阅读 · 0 评论 -
初代-Python,新闻网页
<!-- 注释: 这是我做的第一个关于网站练习的代码 --><html> <head> <title> Mr.Luo </title> </head> <body> <h1 style="color:#4fb6ff; text-align:center;">热点追踪</h1> <h2原创 2020-07-27 08:41:00 · 314 阅读 · 0 评论 -
初代-Python回合制打怪兽
class Hero: def __init__(self,name,level=1): jc = (1 + level/10) self.xl = 100 * jc #英雄生命值 self.fs = 100 * jc #英雄法术 self.gj = 10 * jc #英雄攻击力 self.name = name def dbj(self,object): if self.fs >=10:原创 2020-07-27 08:39:23 · 411 阅读 · 0 评论