码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
static
#1. static关键字,修饰属性、方法还有代码块,表示类的成员。 package com.oop.demo7; public class Application { public static void main(String[] args) { Person p1 = new Person() ...
分类:其他好文   时间:2020-12-02 12:32:30    阅读次数:4
PyCharm设置文件头注释和光标位置
# -*- coding: utf-8 -*- # @File : ${NAME}.py # @Author: FanLu # @Date : ${DATE} #[[$END$]]# 上面的 @Author 的后面可以换上自己的名字. 注意, 一定要勾选那个 Enable Live Template ...
分类:其他好文   时间:2020-12-02 12:31:16    阅读次数:6
flask_migrate数据库迁移遇到的问题
本人使用的python和pip版本都是3.6,以下例子基于此版本。 本人编写的manager.py文件 # coding:utf-8 from flask_script import Manager from flask_migrate import Migrate, MigrateCommand ...
分类:数据库   时间:2020-11-30 16:10:23    阅读次数:11
用户添加
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/ ...
分类:其他好文   时间:2020-11-30 15:26:42    阅读次数:3
Django学习1
安装Djangopipinstalldjango==2.2.0#pipinstalldjangorestframework基础函数视图#!/usr/bin/env/python#--*--coding:utf-8--*--#Author:Vaedit#@Time:fromdjango.httpimportHttpResponsefromdjango.httpimportJsonResponse,H
分类:其他好文   时间:2020-11-27 11:21:56    阅读次数:8
一道经典的python题目【多测师_王sir】
#coding=utf-8 """ Author:多测师_王sir Time:2020-11-22 14:50 Wechat:xiaoshubass website:www.duoceshi.cn """ ''' 题目:python的列表里相邻一样的元素组成一个列表,[1,1,3,6,6,7,7,7 ...
分类:编程语言   时间:2020-11-26 14:53:05    阅读次数:4
序列化和反序列化
# Create your views here.import jsonfrom django.shortcuts import renderfrom django.shortcuts import renderfrom django.http import HttpResponse, HttpRe ...
分类:其他好文   时间:2020-11-26 14:35:15    阅读次数:6
Pytest系列(3) - setup和teardown的详细使用
一、前言 用过unittest的童鞋都知道,有两个前置方法,两个后置方法;分别是 setup() setupClass() teardown() teardownClass() Pytest也贴心的提供了类似setup、teardown的方法,并且还超过四个,一共有十种 **模块级别:**setup ...
分类:其他好文   时间:2020-11-24 12:40:48    阅读次数:8
C++ UTF8字符串与UNICODE转换
资源文件在此 https://github.com/angzel/zen/blob/master/source/basic/zen-string/zen_utf8.h 只有两个函数 std::u32string UTF8ToUnicode(std::string const & utf8); std ...
分类:编程语言   时间:2020-11-24 12:19:12    阅读次数:9
接手项目代码
原项目代码如下 def data_filter(src=r'D:\material\data.json',des=r'D:\material\pro_data.json',db = r'D:\material\tnbs.db'): fw = open(des, 'w', encoding='utf- ...
分类:其他好文   时间:2020-11-23 12:38:04    阅读次数:5
13130条   上一页 1 ... 18 19 20 21 22 ... 1313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!