上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 95 下一页
摘要: 原文:https://blog.csdn.net/qq_19741181/article/details/79827963 原文:https://www.runoob.com/python3/python3-list.html list1 = [1,2,3,4,5,6,7,8] # 格式: a[st 阅读全文
posted @ 2020-02-14 17:30 古兴越 阅读(9132) 评论(0) 推荐(0)
摘要: 原文:忘了 import threading import time def fn1(): print('fn1 start') time.sleep(2) print('fn1 end') print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime 阅读全文
posted @ 2020-02-14 16:51 古兴越 阅读(109) 评论(0) 推荐(0)
摘要: 原文:https://blog.csdn.net/LucasXu01/article/details/88144904 阅读全文
posted @ 2020-02-14 16:05 古兴越 阅读(3220) 评论(0) 推荐(0)
摘要: 原文:https://www.runoob.com/python3/python3-class.html 原文:https://www.cnblogs.com/danhuai/p/11731319.html class MyClass: """一个简单的类实例""" i = 12345 def f( 阅读全文
posted @ 2020-02-14 12:25 古兴越 阅读(309) 评论(0) 推荐(0)
摘要: 原文:https://www.cnblogs.com/dcb3688/p/4610660.html import cv2 import numpy as np #原文:https://www.cnblogs.com/dcb3688/p/4610660.html # 均值哈希算法 def aHash( 阅读全文
posted @ 2020-02-13 11:46 古兴越 阅读(1147) 评论(0) 推荐(0)
摘要: import requests # 原文:https://blog.csdn.net/z564359805/article/details/81978913 arr = ["https://img.yzcdn.cn/upload_files/2018/01/02/FiF5PVWUnEa7WvY9Xr 阅读全文
posted @ 2020-02-01 16:27 古兴越 阅读(156) 评论(0) 推荐(0)
摘要: import numpy as np letters = ['a', 'b', 'c'] nums = [1, 2, 3] for letter, num in zip(letters, nums): print("{}: {}".format(letter, num)) # 将多个list的数据组 阅读全文
posted @ 2020-01-20 08:55 古兴越 阅读(159) 评论(0) 推荐(0)
摘要: import numpy as np import matplotlib.pyplot as plt x=[1,2,3,4] y=[5,4,3,2] plt.subplot(2,2,1)#呈现2行3列,第一幅图 plt.plot(x,y) plt.subplot(222)#呈现2行3列,第一幅图,可 阅读全文
posted @ 2020-01-20 08:51 古兴越 阅读(3296) 评论(0) 推荐(0)
摘要: 原文:https://www.xz577.com/j/24832.html for i in range(10): print("php.cn" + str(i)) 阅读全文
posted @ 2020-01-19 16:57 古兴越 阅读(6450) 评论(0) 推荐(0)
摘要: 在c盘复制一个文件会出现这样的提示: 步骤: 在文件夹上鼠标右键 => 属性 => 安全 => 高级 => 更改所有者(改为你自己的本地账户) => 然后再编辑用户的权限(我是虚拟机 全部给全就行了) 要是里面没有你当前登录的用户,你自己添加一个,然后再配置权限就行了 阅读全文
posted @ 2020-01-19 15:12 古兴越 阅读(394) 评论(0) 推荐(0)
上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 95 下一页