码迷,mamicode.com
首页 >  
搜索关键字:coding    ( 12955个结果
python中定义枚举
# coding:utf-8 class RETCODE: OK = "0" IMAGECODEERR = "4001" THROTTLINGERR = "4002" NECESSARYPARAMERR = "4003" USERERR = "4004" PWDERR = "4005" CPWDER ...
分类:编程语言   时间:2021-03-01 13:03:03    阅读次数:0
【Python】图片有效性管理
# -*- coding: UTF-8 -*- import os import imghdr def get_filelist(dir): for home, dirs, files in os.walk(dir): for filename in files: try: fullname = o ...
分类:编程语言   时间:2021-02-26 13:35:43    阅读次数:0
关于spring boot 注入相关经验
title: 关于spring boot 注入相关经验 date: 2019-07-27 06:54:30 categories: spring boot tags: java 关于spring boot 注入相关经验 这里是最近重新学习Spring boot关于注入相关的经验博客,特此记录一下: ...
分类:编程语言   时间:2021-02-24 13:23:47    阅读次数:0
python读取xml格式数据
读取节点文本值和,属性值 # -*- coding: UTF-8 -*- from xml.dom import minidom dom=minidom.parse('F:\\python_project\\爬虫\\双色球\\shuangseqiu.xml') root=dom.documentEl ...
分类:编程语言   时间:2021-02-24 13:10:12    阅读次数:0
shell_exec()和getenv()
stop(); $t2 = new Bd_Timer(true); // sleep(1); for ($i=0; $i stop(); var_dump($t1time, $t2time); int(439365) int(11) 都可以用来获取环境变量, 但是后者更加省时间和 cpu. ...
分类:系统相关   时间:2021-02-24 13:09:38    阅读次数:0
Resquest和response对象
Request对象:接?封装了客户请求信息,如客户请求?式、参数、客户使?的协议、以 及发出请 求的远程主机信息等, 其主要?法: String getParamter(String paramName);//获取请求参数 String[] getParamterValues(String para ...
分类:其他好文   时间:2021-02-23 14:10:28    阅读次数:0
python 遍历mongo db集合文档
# -*- coding: UTF-8 -*- import pymongo # 连接数据库 client = pymongo.MongoClient('localhost',27017) db=client['qunar'] collection=db['departures'] # 读取数据 d ...
分类:数据库   时间:2021-02-23 14:03:33    阅读次数:0
nacos集群以及数据库问题
持久化mysql时指定数据库编辑application.properties spring.datasource.platform=mysql db.num=1 db.url.0=jdbc:mysql://127.0.0.1:3306/nacos_config?characterEncoding=u ...
分类:数据库   时间:2021-02-22 12:18:17    阅读次数:0
用Python画一颗心、小人发射爱心(附源码)
先画一个爱心, 源代码: #!/usr/bin/env python # -*- coding:utf-8 -*- import turtle import time # 画心形圆弧 def hart_arc(): for i in range(200): turtle.right(1) turtl ...
分类:编程语言   时间:2021-02-20 12:23:41    阅读次数:0
汽车模块
cat car.py 1 #! /usr/bin/python 2 # -*- coding:utf-8 -*- 3 4 5 class Car(object): 6 """ 7 模拟汽车 8 """ 9 def __init__(self, make, model, year): 10 """初始 ...
分类:其他好文   时间:2021-02-19 13:20:12    阅读次数:0
12955条   上一页 1 ... 10 11 12 13 14 ... 1296 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!