def is_evennum(num):
if num % 2 == 0:
return True
else:
return False
按指定次数打印一条消息。
py复制代码
def pri(message, n):
for _ in range(n):
print(message)
给定贷款额、还款年数和年利率,然后计算月支付额
py复制代码
def pay_month(loan, years, year_rote):
#计算月利率
r = year_rote / 12
#计算还款总月
n = years * n
#计算月支付额
M = loan * r * (1 + r) ** n / ((1 + r) ** n - 1)
return M
def function1(n,m):
function2(3.4)
def function2(n):
if n > 0:
return 1
elif n == 0:
return 0
elif n < 0:
return -1
function1(2,3)
error:function2(3.4)这条语句属于f1里的内容,缩进错误
if elif 语句缩进错误
修改后
py复制代码
def function1(n,m):
function2(3.4)
def function2(n):
if n > 0:
return 1
elif n == 0:
return 0
elif n < 0:
return -1
function1(2,3)
(7)下面代码的输出是什么?
python复制代码
def main():
print(min(5,6))
def min(n1,n2):
smallest = n1
if n2 < smallest:
smallest = n2
main()#Call the main function
输出结果:none
因为min函数有返回值,但是没有用return返回,min(5,6)就无法得到返回值,所以是空
(8)运行下面程序时会出现什么错误?
python复制代码
def main():
print(min(min(5,6),(51,6)))
def min(n1,n2):
smallest =n1
if n2 < smallest:
smallest =n2
main()# Call the main function
第二次调用min函数的时候,传过去的实参是none
(9)形参和实参能同名吗?
能,它们的作用域不同,是相互独立的变量
(10)显示下面函数的结果
python复制代码
# 代码A
def main():
max=0
getMax(1,2,max)
print(max)
def getMax(value1,value2,max):
if value1 > value2:
max = vauel
else:
max = value2
main()
# 代码B
def main():
i=1
while i <= 6:
print(function1(i,2))
i+= 1
def functionl(i. num):
line = ""
for j in range(1,i):
line += str(num) + " "
num *= 2
return line
main()
# 代码C
def main():
# Initialize times
times= 3
print("Before the call,variable","times is", times)
#Invoke nprintin and display times
nPrint("welcome to Cs!",times)
print("After the call,variable","times is",times)
# Print the message n times
def nPrint(message,n):
while n>0:
print("n=",n)
print(message)
n -= 1
main()
# 代码D
def main():
i=0
while i <= 4:
function1(i)
i+ 1
print("i is",i)
def function1(i):
line = " "
while i >= 1:
if i % 3 != 0:
line += str(i) + " "
i -= 1
print(line)
main()
"""
13 17 31 37 71 73 79 97 107 113
149 157 167 179 199 311 337 347 359 389
701 709 733 739 743 751 761 769 907 937
941 953 967 971 983 991 1009 1021 1031 1033
1061 1069 1091 1097 1103 1109 1151 1153 1181 1193
1201 1213 1217 1223 1229 1231 1237 1249 1259 1279
1283 1301 1321 1381 1399 1409 1429 1439 1453 1471
1487 1499 1511 1523 1559 1583 1597 1601 1619 1657
1669 1723 1733 1741 1753 1789 1811 1831 1847 1867
1879 1901 1913 1933 1949 1979 3011 3019 3023 3049
"""
#判断素数
def is_prim(num):
for i in range(2, num // 2):
if num % i == 0:
return False
return True
#判断回文数
def is_pal(num):
arr = []
while num != 0:
arr.append(num % 10)
num //= 10
#遍历数组
left = 0
right = len(arr) - 1
# print(arr)
while left <= right:
if arr[left] == arr[right]:
if left == right:
return True
left += 1
right -= 1
if arr[left] != arr[right]:
return False
if left > right and arr[left] == arr[right]:
return True
#得到反素数
def rever_pri(i):
arr = []
num = 0
while i != 0:
arr.append(i % 10)
i //= 10
left = 0
right = len(arr) - 1
while right >= 0 and left <= len(arr) - 1:
num += arr[left] * 10 ** right
left += 1
right -= 1
return num
#反素数
count = 0
i = 2
while count < 100:
if is_prim(i) and not is_pal(i):
if is_prim(rever_pri(i)):
count += 1
print(i, end = " ")
if count % 10 == 0:
print()
i += 1
(20) 双素数
题目描述
双素数是指一对差值为2的素数,例如3和5就是一对双素数,5和7也是一对双素数
输出显示小于1000的双素数
py复制代码
"""
(2, 4) (3, 5) (5, 7) (11, 13) (17, 19) (29, 31) (41, 43) (59, 61) (71, 73) (101, 103)
(107, 109) (137, 139) (149, 151) (179, 181) (191, 193) (197, 199) (227, 229) (239, 241) (269, 271) (281, 283)
(311, 313) (347, 349) (419, 421) (431, 433) (461, 463) (521, 523) (569, 571) (599, 601) (617, 619) (641, 643)
(659, 661) (809, 811) (821, 823) (827, 829) (857, 859) (881, 883)
"""
#双素数
#判断素数
def is_prim(num):
for i in range(2, num // 2):
if num % i == 0:
return False
return True
#判断是否是双素数
def is_pait_prim(a, b):
if is_prim(a) and is_prim(b) and b - a == 2:
return True
else:
return False
i = 2
count = 0
while i < 1000:
j = 2
while j < 1000:
if is_pait_prim(i, j):
count += 1
print((i, j), end = " ")
if count % 10 == 0:
print()
j += 1
i += 1
(21) 梅森素数
如果一个素数可以写成 2 p − 1 2^p-1 2p−1的形式,其中p是某个正整数,那么这个素数就称作梅森素数
输出p≤31的所有梅森素数
py复制代码
#梅森素数
#判断素数
def is_prim(num):
for i in range(2, int(num ** 0.5) + 1):
if num % i == 0:
return False
return True
p = 2
while p <= 31:
mersenne_prime = 2 ** p - 1
if is_prim(mersenne_prime):
print(mersenne_prime, end = " ")
p += 1