今天看网上一个说中文日期的问题.自己试了下.#-*-coding:gb2312-*-
importdatetime,time
#now=time.strftime(‘%Y年%m月%d日%H时%M分%S秒‘,time.localtime()).decode(‘utf-8‘)
now=time.strftime(‘%Y年%m月%d日%H时%M分%S秒‘,time.localtime())
printnow
now=time.strptime(no..
分类:
编程语言 时间:
2015-01-21 20:27:54
阅读次数:
196
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'16: 3Sum Closesthttps://oj.leetcode.com/problems/3sum-closest/Given an array S of n intege...
分类:
编程语言 时间:
2015-01-21 06:37:11
阅读次数:
170
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'15: 3Sumhttps://oj.leetcode.com/problems/3sum/Given an array S of n integers, are there el...
分类:
编程语言 时间:
2015-01-21 06:34:04
阅读次数:
177
文件读写涉及到cPickle这个包。基本的流程在代码中有表述,但是教程中说加一段代码叫做:protocol=cPickle.HIGHEST_PROTOCOL会使得效率大增#!/usr/bin/env python# coding=utf-8import cPicklef=file('obj.txt'...
分类:
其他好文 时间:
2015-01-20 22:02:06
阅读次数:
192
首先设置autoFillBackground属性为真然后定义一个QPalette对象设置QPalette对象的背景属性(颜色或图片)最后设置QWidget对象的Palette实例: 1 # -*- coding: utf-8 -*- 2 import sys 3 from PyQt4 import ...
分类:
其他好文 时间:
2015-01-20 21:58:54
阅读次数:
1658
此脚本功能主要是找到/data1到/data11下面在当前时间一天以外的所有文件,并复制到另外一台新机器上面。注意:重点检验自动化交互输入密码,进行远程文件复制功能#!/usr/bin/pyth
#coding=utf-8#字符编码
importos#os模块
importpexpect#自动交互模块
importtime#导入时间模块
dir..
分类:
其他好文 时间:
2015-01-20 18:26:26
阅读次数:
125
一维Burgers方程
一维burgers方程为:
由于等式右边可以进行积分:
利用F = u**2,则方程为:
假设u初始为阶跃函数:
数值解法采用MacCormack格式:
但是这一解法,有失真的性质,后面具体介绍。
所以根据这一格式,可以直接数值求解,并利用matplotlib画出动态的数值图形,具体代码如下:
# -*- coding...
分类:
其他好文 时间:
2015-01-20 18:14:55
阅读次数:
468
With the lastWebStorm/PhpStorm EAPyou can edit HTML and CSS code really fast usingZen Codingfeatures.To use it, you have to install Zen Coding plugin ...
分类:
Web程序 时间:
2015-01-20 17:48:11
阅读次数:
173
摘抄自:廖雪峰的官方网站:http://www.liaoxuefeng.com/TCP客户端和服务器端代码:#coding=utf-8#客户端程序TCP 连接import sockets=socket.socket(socket.AF_INET,socket.SOCK_STREAM)s.connec...
分类:
编程语言 时间:
2015-01-20 17:33:36
阅读次数:
244
实现了私聊,公聊。用户名密码存在redis。为了拓展,做了简单的模块。#coding=utf8from twisted.internet import reactor, deferfrom twisted.protocols.basic import LineReceiverfrom twisted...
分类:
其他好文 时间:
2015-01-20 17:15:08
阅读次数:
186