上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 95 下一页
摘要: import time time.sleep(5) 阅读全文
posted @ 2020-01-19 14:41 古兴越 阅读(445) 评论(0) 推荐(0)
摘要: 原文:https://www.jetbrains.com/zh/pycharm/promo/?utm_source=baidu&utm_medium=cpc&utm_campaign=cn-bai-br-pycharm-ph-pc&utm_content=pycharm-pure&utm_term= 阅读全文
posted @ 2020-01-19 09:48 古兴越 阅读(169) 评论(0) 推荐(0)
摘要: 原文:http://www.blog2019.net/post/7 淘宝发布商品 由于分类过多的解决方案: 分类是从拼多多上搞下来的,一段js脚本就可以搞定 由于js事件的问题,不知道为什么淘宝上无法触发他的事件,就懒得仔细研究了,速度解决问题就好,所以就弃用了js添加分类的想法 由于最近在玩pyt 阅读全文
posted @ 2020-01-18 23:11 古兴越 阅读(376) 评论(0) 推荐(0)
摘要: pip安装时,注意一下windows的权限,我系统是win10,安装的时候提示文件夹没有权限无法写入,我重新跟文件夹设置过权限的,先更改文件夹的所有者,然后改的权限 pip安装: 1、首先 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 阅读全文
posted @ 2020-01-17 17:40 古兴越 阅读(1319) 评论(1) 推荐(0)
摘要: 安装包: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller 在控制台执行命令: pyinstaller -F test.py 阅读全文
posted @ 2020-01-17 17:08 古兴越 阅读(126) 评论(0) 推荐(0)
摘要: 原文:https://www.cnblogs.com/cymwill/p/7069901.html file=open('data.txt','w') file.write(str(list_data)); file.close() 阅读全文
posted @ 2020-01-17 11:43 古兴越 阅读(3492) 评论(0) 推荐(0)
摘要: 原文:https://www.cnblogs.com/chenfulin5/p/7813791.html num1 = "123"; num2 = int(num1); num3 = "123.12"; num4 = float(num3); 阅读全文
posted @ 2020-01-17 11:34 古兴越 阅读(102) 评论(0) 推荐(0)
摘要: arr = ['a','b','c'] arr.append('d') print(arr) for each in arr: print(each) # 原文: #http://c.biancheng.net/view/2209.html #https://blog.csdn.net/qq_197 阅读全文
posted @ 2020-01-17 11:12 古兴越 阅读(154) 评论(0) 推荐(0)
摘要: 原文:https://www.cnblogs.com/zhxwind/p/8855186.html # 定义函数 def sayHello(): print('hello') # 调用函数 sayHello() 阅读全文
posted @ 2020-01-17 09:43 古兴越 阅读(94) 评论(0) 推荐(0)
摘要: 原文:https://www.cnblogs.com/lfri/p/10615472.html import os path = "./game-smart/" files = os.listdir(path) for filename in files: print(filename) 阅读全文
posted @ 2020-01-17 09:38 古兴越 阅读(3124) 评论(0) 推荐(0)
上一页 1 ··· 61 62 63 64 65 66 67 68 69 ··· 95 下一页