n = int(input())
list_cube = [0]
for i in range(1, n + 1):
list_cube.append(i * i * i)
for a in range(6, n + 1):
for b in range(2, a - 1):
if list_cube[a] < (list_cube[b] + list_cube[b + 1] + list_cube[b + 2]):
break
for c in range(b + 1, a):
if list_cube[a] < (list_cube[b] + list_cube[c] + list_cube[c + 1]):
break
for d in range(c + 1, a):
if list_cube[a] == (list_cube[b] + list_cube[c] + list_cube[d]):
print("Cube=%d,Tripe=(%d,%d,%d)" % (a, b, c, d))
8、货币转换:写一个程序进行货币间币值转换,其中:人民币和美元间汇率固定为:1美元 = 6.78人民币。
程序可以接受人民币或美元输入,转换为美元或人民币输出。人民币采用RMB表示,美元USD表示,符号和数值之间没有空格。
import re
money = input().lower()
tmp=re.findall('usd|rmb',money)
if len(tmp)==0 or len(tmp)>1:
print('wrong')
money=re.sub(tmp[0],'',money)
try:
num=float(money)
if 'usd' in tmp:
print('RMB%.2f'%(num*6.78))
else:
print('USD%.2f'%(num/6.78))
except:
print('wrong')
9、月份缩写:如果有 months = "Jan.Feb.Mar.Apr.May.Jun.Jul.Aug.Sep.Oct.Nov.Dec.",编写一个程序,用户输入一个月份的数字,输出月份的缩写。
months = "Jan.Feb.Mar.Apr.May.Jun.Jul.Aug.Sep.Oct.Nov.Dec."
n = input()
index = (int(n)-1)*4
month = months[index: index + 4]
print(month)
10、温度转换:编写程序将用户输入华氏度转换为摄氏度,或将输入的摄氏度转换为华氏度。
转换算法如下:(C表示摄氏度、F表示华氏度)
C = ( F - 32 ) / 1.8
F = C * 1.8 + 32
要求如下:
(1) 输入输出的摄氏度采用大写字母C开头,温度可以是整数或小数,如:C12.34指摄氏度12.34度;
(2) 输入输出的华氏度采用大写字母F开头,温度可以是整数或小数,如:F87.65指摄氏度87.65度;
(3) 不考虑异常输入的问题,输出保留小数点后两位;
Temperature = input()
if Temperature[0] in ['F']:
C = (eval(Temperature[1:])-32)/1.8
print("C{:.2f}".format(C))
else:
F = 1.8*eval(Temperature[1:])+32
print("F{:.2f}".format(F))
11、汇率兑换:按照1美元=6人民币的汇率来编写一个美元与人民币的双向兑换程序
money = input()
if money[-1] in ['$']:
m = 6*eval(money[:-1])
print("{:.2f}R".format(m))
else:
if money[-1] in ['R']:
m = eval(money[:-1])/6
print("{:.2f}$".format(m))
else:
print("输入错误!")
12、恺撒密码:凯撒密码是古罗马凯撒大帝用来对军事情报进行加解密的算法,它采用了替换方法对信息中的每一个英文字符循环替换为字母表序列中该字符后面的第三个字符,即,字母表的对应关系如下:
原文:A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
密文:D E F G H I J K L M N O P Q R S T U V W X Y Z A B C
对于原文字符P,其密文字符C满足如下条件:C=(P+3) mod 26
上述是凯撒密码的加密方法,解密方法反之,即:P=(C-3) mod 26
假设用户可能使用的输入仅包含小写字母a~z和空格,请编写一个程序,对输入字符串进行凯撒密码加密,直接输出结果,其中空格不用进行加密处理。
sr1 = "abcdefghijklmnopqrstuvwxyz"
sr2 = sr1.upper()
sr = sr1 + sr1 + sr2 + sr2
in_str = input("")
out_str = ""
for j in in_str:
if j == " ":
out_str = out_str + " "
continue
i = sr.find(j)
if(i > -1):
out_str = out_str + sr[i+3]
print(out_str)
13、个人所得税计算:个人所得税采用“超额累进税率”计算方法,简化公式如下:
缴税 = (个人薪金扣险所得 – 个税免征额)* 税率
其中,个税免征额为3500元,税率根据应纳税额数量而不同,如下图所示:
注意:“应纳税额”为:个人薪金扣险所得 – 个税免征额
请编写一个程序根据用户输入计算个人所得税,用户输入是个人薪金扣险所得。
约定用户输入为以人民币元为单位的整数。
m = int(input())
ans = 0
if m > 3500:
m1 = m - 3500
if m1 < 1500:
ans = 0.03 * m1
elif m1 < 4500:
ans = 0.1 * m1
elif m1 < 9000:
ans = 0.2 * m1
elif m1 < 35000:
ans = 0.25 * m1
elif m1 < 55000:
ans = 0.3 * m1
elif m1 < 80000:
ans = 0.35 * m1
else:
ans = 0.45 * m1
else:
ans = 0
print("%.0f"%ans)
14、3位水仙花数计算:“3位水仙花数”是指一个三位整数,其各位数字的3次方和等于该数本身。例如:ABC是一个“3位水仙花数”,则:A的3次方+B的3次方+C的3次方 = ABC。
请按照从小到大的顺序输出所有的3位水仙花数,请用一个“逗号+空格”分隔输出结果。
import math
list = []
for i in range(100, 1000):
x = math.floor(i / 100)
y = math.floor((i - x * 100) / 10)
z = i - math.floor(i / 10) * 10
if i == x ** 3 + y ** 3 + z ** 3:
list.append(str(i))
print(", ".join(tuple(list)))
15、统计下列英文诗歌:
All that doth flow we cannot liquid name
Or else would fire and water be the same;
But that is liquid which is moist and wet
Fire that property can never get.
Then 'tis not cold that doth the fire put out
But 'tis the wet that makes it die, no doubt.
编程实现对纽卡斯伯爵的不朽名篇What Is Liquid的统计工作。这首诗(1)有多少个字符?(计入空格和换行符)(2)判断是否以All开头?(3)判断是否以That's all, folks!结尾?(4)第一次和最后一次出现单词the的位置(偏移量)。(5)the出现的总次数?(6)判断诗中出现的所有字符是否都是字母和数字?
s = "All that doth flow we cannot liquid name Or else would fire and water be the same;But that is liquid which is moist and wet Fire that property can never get. Then 'tis not cold that doth the fire put out But 'tis the wet that makes it die, no doubt. "
print("这首词总共有:" + str(len(s)) + "个字符串")
print("这首诗是否以All开头:",s.startswith('All'))
print("这首诗是否以That\'s all, folks!结尾:",s.endswith('That\'s all, folks!'))
print("第一次出现单词the的位置:",s.find(' the '))
print("最后一次出现单词the的位置:",s.rfind(' the '))
print("the在诗中出现的总次数:",s.count(' the '))
print("是否诗中出现的所有字符都是字母和数字:",s.isalnum())
原文链接:http://mp.weixin.qq.com/s?__biz=MzU5MTE0ODcwNQ==&mid=2247484076&idx=1&sn=81f4440d7af3948321e8e5db78761c9b&chksm=fe322162c945a87473e7cff974dd0cf66c07bd1f88492097de9cf33afe8a3eb0202d5d9aef52#rd
扫描关注微信公众号,了解更多