-
Git如何合并其它分支一、确认已经获取了最新的主分支 git fetch master 二、合并 git rebase master 三、把合并后的分支发送到服务器 git pust --force 加force可强制pust,Jesong 时间:2011-06-17 + 阅读全文
-
python为什么不需要三目运算符和switch对于三目运算符(ternary operator),python可以用conditional expressions来替代 如对于x<5?1:0可以用下面的方式来实现 1 if x<5 else 0 注: conditjohn2000 时间:2011-06-15 + 阅读全文
-
python查看某一个文件/程序是否是可执行的通过os.access(filename,mode): s.access(path, mode)¶ Use the real uid/gid to test for access to path. Note that most operationsjohn2000 时间:2011-06-15 + 阅读全文
-
python学习笔记2创建一个文件并往里面写入内容 import os # coding=utf-8 #取得OS的换行符 ls = os.linesep # 获取文件名 while True: fname = raw_input('input file name司徒正美 时间:2011-06-14 + 阅读全文
-
python 获取当前运行的类名函数名import inspect def get_current_function_name(): return inspect.stack()[1][3] class MyClass:  Jerry.Kwan 时间:2011-06-14 + 阅读全文
-
Python入门系列(四):运算符与表达式一、简介。 咱们编写的大多数语句(逻辑行)都包含表达式。一个简单的表达式例子如2 + 3。一个表达式可以分解为运算符和操作数。运算符 的功能是完成某件事,它们由如+这样的符号或者其他特定的关键字表示。运算符需要数据来进行运算,这样的数据被称为刘江北 时间:2011-06-12 + 阅读全文
-
关于Console 2窗口内容偏移以及中文输入的问题前天找到这个代理windows下cmd的开源小程序 功能很强大 不过有点小问题 就是文字内容会偏移显示 很不爽 上网查了下 发现是由于文字编码问题造成的 因为console2只是cmd的一个代理程序 所以需要在cLemonLi 时间:2011-06-12 + 阅读全文
-
【python】download google music#!/usr/bin/env python3#gmd.py"""Google Music Downloader(GMD) --Version: 1.5 --Update: 2011-06-12 --Author: kev++K++ 时间:2011-06-12 + 阅读全文