程序分析:无。
a =809for i inrange(10,100):b = i * aif b >=1000and b <=10000and8* i <100and9* i >=100:print( b,' = 800 * ', i,' + 9 * ', i)# 以上实例输出结果为:# 9708 = 800 * 12 + 9 * 12
2. 八进制转换为十进制
程序分析:无。
if __name__ =='__main__':n =0p =input('input a octal number:\n')for i inrange(len(p)):n = n *8+ord(p[i])-ord('0')print( n)# 以上实例输出结果为:# input a octal number:# 122# 82#2deff8to10(num):print(("8进制数:", num))l =str(num)length =len(l)sum=0for i inrange(length):sum+=8** i *int(l[length-1-i])print(("转成10进制数为:",sum))f8to10(122)#3if __name__ =='__main__':n = s =0L =[]n =input("请输入一个八进制数: \n")for i inrange(len(n)):L.append(n[i])L.reverse()for i inrange(len(n)):s = s +int(L[i])*(8**i)print( s)#4defbatoshi(num):count=0j=len(num)-1for each_ch in num:count+=pow(8,j)*int(each_ch)j-=1return countprint(batoshi('122'))#5
n=input('请输入一个八进制数:')#使用列表推导式来写
lost=sum([int(n[-i])*8**(i-1)for i inrange(1,len(n)+1)])print('转换十进制数为:%s'%lost)#6
n =reversed('122')s =0for idx,i inenumerate(n):s +=int(i)*pow(8, idx)print(s)
程序分析:无。
if __name__ =='__main__':a ="acegikm"b ="bdfhjlnpq"# 连接字符串c = a + bprint( c)# 以上实例输出结果为:# acegikmbdfhjlnpq
7. 回答结果(结构体变量传递)。
程序分析:无。
if __name__ =='__main__':classstudent:x =0c =0deff(stu):stu.x =20stu.c ='c'a= student()a.x =3a.c ='a'f(a)print( a.x,a.c)# 以上实例输出结果为:# 20 c
8. 读取7个数(1—50)的整数值,每读取一个值,程序打印出该值个数的*。
程序分析:无。
if __name__ =='__main__':n =1while n <=7:a =int(input('input a number:\n'))while a <1or a >50:a =int(input('input a number:\n'))print( a *'*')n +=1# 以上实例输出结果为:'''
input a number:
9
*********
input a number:
5
*****
input a number:
6
******
input a number:
'''
程序分析:无。
from sys import stdout
if __name__ =='__main__':a =int(input('输入四个数字:\n'))aa =[]aa.append(a %10)aa.append(a %100/10)aa.append(a %1000/100)aa.append(a /1000)for i inrange(4):aa[i]+=5aa[i]%=10for i inrange(2):aa[i],aa[3- i]= aa[3- i],aa[i]for i inrange(3,-1,-1):stdout.write(str(aa[i]))#以上实例输出结果为:'''
输入四个数字:
1234
9876
'''
10. 列表使用实例。
程序分析:无。
#list #新建列表
testList=[10086,'中国移动',[1,2,4,5]]#访问列表长度 print(len(testList))#到列表结尾 print( testList[1:])#向列表添加元素
testList.append('i\'m new here!')print(len(testList))print( testList[-1])#弹出列表的最后一个元素 print( testList.pop(1))print(len(testList))print( testList )#list comprehension #后面有介绍,暂时掠过
matrix =[[1,2,3],[4,5,6],[7,8,9]]print( matrix )print( matrix[1])
col2 =[row[1]for row in matrix]#get a column from a matrix print( col2 )
col2even =[row[1]for row in matrix if row[1]%2==0]#filter odd item print( col2even)# 以上实例输出结果为:'''
3
['\xe4\xb8\xad\xe5\x9b\xbd\xe7\xa7\xbb\xe5\x8a\xa8', [1, 2, 4, 5]]
4
i'm new here!
中国移动
3
[10086, [1, 2, 4, 5], "i'm new here!"]
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
[4, 5, 6]
[2, 5, 8]
[2, 8]
'''
11. 时间函数举例1。
程序分析:无。
if __name__ =='__main__':import timeprint( time.ctime(time.time()))print( time.asctime(time.localtime(time.time())))print( time.asctime(time.gmtime(time.time())))# 以上实例输出结果为:'''
Wed Oct 21 17:08:51 2015
Wed Oct 21 17:08:51 2015
Wed Oct 21 09:08:51 2015
'''
12. 时间函数举例2。
程序分析:无。
if __name__ =='__main__':import timestart = time.time()for i inrange(3000):print( i)end = time.time()print( end - start)# 以上实例输出结果为:'''
0
1
2
3
4
……
'''
13. 时间函数举例3。
程序分析:无。
if __name__ =='__main__':import timestart = time.clock()for i inrange(10000):print( i)end = time.clock()print('different is %6.3f'%(end - start))# 以上实例输出结果为:'''
0
1
2
3
4
……
different is 0.014
'''
14. 时间函数举例4,一个猜数游戏,判断一个人反应快慢。
程序分析:无。
if __name__ =='__main__':import timeimport randomplay_it =input('do you want to play it.(\'y\' or \'n\')')while play_it =='y':c =input('input a character:\n')i = random.randint(0,2**32)%100print('please input number you guess:\n')start = time.clock()a = time.time()guess =int(input('input your guess:\n'))while guess != i:if guess > i:print('please input a little smaller')guess =int(input('input your guess:\n'))else:print('please input a little bigger')guess =int(input('input your guess:\n'))end = time.clock()b = time.time()var =(end - start)/18.2print( var)# print( 'It took you %6.3 seconds' % time.difftime(b,a)))if var <15:print('you are very clever!')elif var <25:print('you are normal!')else:print('you are stupid!')print('Congradulations')print('The number you guess is %d'% i)play_it =input('do you want to play it.')# 以上实例输出结果为:'''
do you want to play it.('y' or 'n')y
input a character:
5
please input number you guess:input your guess:
60
……
please input a little bigger
input your guess:
29
please input a little smaller
input your guess:
28
3.81868131868e-05
you are very clever!
Congradulations
The number you guess is 28
do you want to play it.
'''