发布时间:2015-05-11 11:56:54
gcc -o test -I /home/cunit/include -L /home/cunit/lib -l cunit run_test.c test_func.c fun.c......【阅读全文】
发布时间:2015-04-25 09:48:32
Source Insight常用的快捷键: Ctrl+= :Jump to definition Alt+/ :Look up reference F3 : search backward F4 : search forward F5: go to Line F7 :Look up symbols F8 :Look up local symbols F9 :I.........【阅读全文】
发布时间:2015-04-23 23:18:27
#!/bin/bash#CPU监控CPULoad(){cpu_idle=`top -b -n 1 | grep Cpu | awk '{print $4}' | cut -f 2 -d "," | awk -F% '{print $1}' | cut -f 1 -d "."`if [ $cpu_idle -lt 20 ] then echo "CPU负载过高,请处理,当前剩余$cpu_idle%" >> /home/log &nbs.........【阅读全文】
发布时间:2015-04-23 23:17:02
CPU信息/proc/cpuinfo文件包含了你的系统处理器单元的信息。例如,这里就是python版的linux命令cat /proc/cpuinfo所做的事:#! /usr/bin/env python""" print out the /proc/cpuinfo file"""from __future__ import print_functionwith open('/proc/cpuinfo') as f: for line in f:&nbs.........【阅读全文】
发布时间:2015-03-11 11:43:24
1.failed to set __main__.__loader__ 配置好Python环境,运行1-100和.py实例就出现这个异常,原来是文件名包含非英文字符,将名字改为英文就没问题了......【阅读全文】
发布时间:2015-03-05 10:24:16
Python中的strip用于去除字符串的首尾字符,同理,lstrip用于去除左边的字符,rstrip用于去除右边的字符。这三个函数都可传入一个参数,指定要去除的首尾字符。需要注意的是,传入的是一个字符数组,编译器去除两端所有相应的字符,直到没有匹配的字符,比如:.........【阅读全文】
发布时间:2015-01-17 16:35:19
#找出0~100之间的所有素数from math import sqrtN = 100#基本的方法result1 = []for num in range(2, N): f = True for snu in range(2, int(sqrt(num))+1): if num % snu == 0: f = False .........【阅读全文】
发布时间:2015-01-17 16:09:42
#利用python作为科学计算器。熟悉Python中的常用运算符,并分别求出表达式12*34+78-132/6、(12*(34+78)-132)/6、(86/40)**5的值。并利用math模块进行数学计算,分别求出145/23的余数,0.5的sin和cos值(注意sin和cos中参数是弧度制表示)x = 12*34+78-132/6y = (12*(34+78)-132)/6z = (86/40)**5print ('12*34+78-132/6.........【阅读全文】
发布时间:2015-01-17 15:16:34
判断闰年条件, 满足年份模400为0, 或者模4为0但模100不为0. import timethisyear = time.localtime()[0]if thisyear % 400 == 0 or thisyear % 4 ==0 and thisyear % 100 != 0:print ('this year %s is a leap year' % thisyear)else:print ('this year %s is not a leap year' % thisyear)this year 2015 is .........【阅读全文】