码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
ArcGIS Python拱形面
# -*- coding: utf-8 -*- #by gisoracle 2021.01.23 import arcpy import math #保存数据 def Save(polygon,rows): row = rows.newRow() #row.setValue(shapefieldna ...
分类:编程语言   时间:2021-01-26 12:35:59    阅读次数:0
Python搜索B站视频并且爬取
目前遍历循环仍未完成,所以只会下载第一个结果,后续会完善成接口可以做单独调用,其中还有音频和视频的合并,需要先安装ffmpeg环境 # -*- coding: utf-8 -*- import requests from urllib import parse,request import urll ...
分类:编程语言   时间:2021-01-20 12:02:16    阅读次数:0
树莓派启动后自动发送本地IP 到指定邮箱
在 /etc/init.d 目录下建立 GetLocalip.py 文件 #coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header import socket ...
分类:其他好文   时间:2021-01-20 11:43:31    阅读次数:0
JSP-2
一.JSP内置对象 request:表示一次请求,HttpServletRequest response:表示一次响应,HttpServletResponse pagecontext:页面上下文,获取页面信息,PageContext session:表示一次会话,保存用户信息,HttpSession ...
分类:Web程序   时间:2021-01-20 11:39:58    阅读次数:0
mysql的retrieve
package test;import java.sql.*;public class retrieve { public static void main(String[] args) { try { Class.forName("com.mysql.jdbc.Driver"); } catch ...
分类:数据库   时间:2021-01-18 11:27:02    阅读次数:0
Python文件I/O
文件读写包括:文件打开(open),模式(文件读(r,r+),文件写(w,w+),文件追加(a)),文件关闭(close()),字符集(encoding=UTF-8),流程管理函数with(),文件的相对路径和绝对路径 open():open打开的文件是一个流,只能被read()函数消费一次,如果需 ...
分类:编程语言   时间:2021-01-14 10:31:00    阅读次数:0
Spring Cloud微服务实战 打造企业级优惠券系统 2-5 Redis特性以及问题规避(概念)(面试)
0 课程地址 https://coding.imooc.com/lesson/380.html#mid=28221 1 个人收获 2 课程内容 2.1 Redis速度快的原因: 1.完全基于内存操作(快于硬盘操作)2.数据结构简单3.单线程,避免了上下文状态切换没有上锁而影响性能4.多路I0复用模型 ...
分类:编程语言   时间:2021-01-12 11:18:10    阅读次数:0
C# MD5加密字符串
public string GetMD5(string txt) { System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] frmData ...
分类:Windows程序   时间:2021-01-12 11:08:56    阅读次数:0
Python线程超时控制
# #!/usr/bin/env python # # coding: utf-8 # # https://www.cnblogs.com/scolia/p/6132950.html import threading import time import signal def set_timeout ...
分类:编程语言   时间:2021-01-11 10:54:45    阅读次数:0
Python super() 函数
super() 函数是用于调用父类(超类)的一个方法。 super() 是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题。 实例: #!/usr/bin/python # -*- coding: ...
分类:编程语言   时间:2021-01-11 10:49:33    阅读次数:0
13130条   上一页 1 ... 13 14 15 16 17 ... 1313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!