Think before you speak, read before you think.

Tag: Summary

  • python的入门的几个例子(下)

    http://jpuyy.com/2012/12/python-simple-programs-a.html http://jpuyy.com/2013/01/python-simple-programs-b.html 例.20 素数筛选,生成器–Prime numbers sieve w/fancy generators 生成从2到1000以内的素数 import itertools def iter_primes(): # an iterator of all numbers between 2 and +infinity numbers = itertools.count(2) # generate primes forever while True: # get the first number from the iterator (always a prime) prime = numbers.next() yield prime # this code iteratively builds up a…

  • python的入门的几个例子(中)

    接着上一个http://jpuyy.com/2012/12/python-simple-programs-a.html 例11.三引号,while循环–Triple-quoted strings, while loop REFRAIN = ”’ %d bottles of beer on the wall, %d bottles of beer, take one down, pass it around, %d bottles of beer on the wall! ”’ bottles_of_beer = 99 while bottles_of_beer > 1: print REFRAIN % (bottles_of_beer, bottles_of_beer, bottles_of_beer – 1) bottles_of_beer -= 1 例12.python中的类–Classes class BankAccount(object): def…

  • ubuntu安装jdk7

    by

    in

    第一步:添加JDK7的源 # Step 1: Add the repository for JDK 7. sudo apt-add-repository ppa:webupd8team/java 第二步:更新 # Step 2: Update sudo apt-get update 第三步:安装JDK及附加组件 # Step 3: Install JDK and associated utilities sudo apt-get install oracle-java7-installer 第四步:设置默认编译器 # Step 4: Set the default java interpreter used by the system. sudo update-alternatives –config java

  • python获取日期和时间的方法

    使用datetime模块 #!/usr/bin/env python #-*- coding:utf-8 -*- #author: jpuyy date jpuyy.com import datetime now = datetime.datetime.now() print print “以str显示datetime对象” print str(now) print “使用实例属性” print “今年是%d年” % now.year print “现在是%d月” % now.month print “今天是%d号” % now.day print “现在%d点了” % now.hour print “现在是%d分” % now.minute print “当前是%d秒” % now.second print “当前微秒值是%d, 1秒=1000000微秒” % now.microsecond print “用strftime()显示格式化的时间” print now.strftime(“%Y-%m-%d…

  • python执行shell命令

    在 python for unix and linux system administraton一书中,有这么一句话: You can run any shell command in Python just as it would be run with Bash. 你可以用python执行bash中可以执行的任何命令。 显示/tmp/信息(两种执行bash命令的方式) #!/usr/bin/env python import subprocess subprocess.call([“ls”,”-l”,”/tmp/”]) subprocess.call(“df -l /tmp/”, shell=True) 将输出赋给指定变量 output = subprocess.check_output(‘ls’, shell=True)

  • 升级的坏处

    by

    in

    这里的升级指,电脑软件的升级,手机软件的升级,linux系统升级,kindle,ipad升级 活生生的例子 会计的电脑升级报税,升级后出现问题,重新安装软件,之前的打印机设置丢失。 下班之前点关机,一大堆更新,耽误回家的时间。 在周五升级,要是升级不成功,周末就完蛋了。 用了火狐18.0,感觉电脑运行很慢,换回4.0.1,在使用习惯上没有差别,但更流畅 同上,将ie9降为了ie8。电脑硬件不升级,而软件自动更新,不能满足软件的开销,关闭自动升级才是王道。如果说升级是因为安全原因,那怎么能保证升级后就安全。 总结:在功能上能满足自己的,就坚决不升级。升级对自己来说没有好处,那就是有坏处,只图一时之爽没有多大意义。