大家好,小编来为大家解答以下问题,python基础题库100题及答案,python基础题库详解,现在让我们一起来看看吧!
sep="|",字符串中间用"|"隔开
end="#",字符串末尾加上"#"
所以第一个显示Hello|100#,第二个显示您好,所以是
D.Hello|100#您好
1
#!/usr/bin/env python3.6 def due(cost): if cost >= 3000: return cost * 0.85 if cost >= 2000: return cost * 0.9 if cost >= 1000: return cost *0.95 return cost cost = input('Please input total cost of the goods: ') print(f'You should pay: {due(float(cost)):.2f}')
2
a, b, c = 1, 2, 3 n = 3 while True: n += 1 a, b, c = b, c, (a+b+c)/2.0 if c > 1200: print(n) break
3
def gys(m, n): for i in range(min(m, n), 0, -1): if m % i == n % i == 0: return i
4
def is_wanshu(n): yinzi = [i for i in range(1, n) if n % i == 0] return n == sum(yinzi)
不考虑输入数字的正确性前提下:
Python是一种编程语言,它有对象、模块、线程、异常处理和自动内存管理。可以加入与其他语言的对比。下面是回答这一问题的几个关键Python是一种解释型语言,python代码在运行之前不需要编译Python是动态类型语言,在声明变量时,不需要说明变量的类型Python适合面向对象的编程,因为它支持通过组合与继承的方式定义类在Python语言中,函数是第一类对象 Python代码编写快,但是运行速度比编译语言通常要慢Python用途广泛,常被用作胶水语言,可帮助其他语言和组件改善运行状况 使用Python,程序员可以专注于算法和数据结构的设计,而不用处理底层的细节。
def primer(): # 孪生素数对 li = [2] for i in range(3, 98): for j in range(2, i): if i % j == 0: break else: li.append(i) for k in range(len(li) - 1): if li[k] == li[k + 1] - 2: print(li[k], li[k + 1]) def ite(a): # 迭代 x1 = 1 x2 = (x1 + a / x1) / 2 while abs(x1 - x2) > 0.00001: x1 = x2 x2 = (x1 + a / x1) / 2 print(x2) def copper(): # 铜管 diff = 0 for i in range(1, 22): for j in range(1, 13): total = 15 * i + j * 27 if (diff < total) and total <= 317: diff = total print(diff) for i in range(1, 22): for j in range(1, 13): if 15 * i + j * 27 == diff: print(i, j) # 甲预测,A第一,B第二;乙预测,C第一,D第三;丙预测,D第二,A第三 def guess(): first = {'A': '第一', 'B': '第二'} sen = {'C': '第一', 'D': '第三'} third = {'D': '第二', 'A': '第三'} total = {} li = list('ABCD') num = ['第一', '第二', '第三', '第四'] for i in first.keys(): for m in sen.keys(): for n in third.keys(): if first[i] != third[n] and sen[m] != third[n] and first[i] != sen[m] and i != n and m != n and i != m: total[i] = first[i] total[m] = sen[m] total[n] = third[n] for k, v in total.items(): if k in li: li.remove(k) if v in num: num.remove(v) total[li[0]] = num[0] print(total) primer() ite(100) copper() guess()
上午没事的时候只做了四个题目,后面一个埃及数我还在看,做好了也发你吧
import random
print('a: 加法测试题')
print('b: 乘法测试题')
print('q: 退出')
while True:
a = input('请输入指令(a/m/q): ')
if (a == 'a'):
for __count in range(5):
f = random.randint(1, 100)
s = random.randint(1, 10)
a = input((str(f) + '+' + str(s) + ' = '))
try:
a = int(a)
except:
print('还需要更细心哦!正确答案是' + str((f + s)))
else:
if (a == f + s):
print('回答正确!你真棒!')
else:
print(('还需要更细心哦!正确答案是' + str((f + s))))
elif (a == 'm'):
for __count in range(5):
f = random.randint(1, 100)
s = random.randint(1, 10)
a = input((str(f) + '×' + str(s) + ' = '))
try:
a = int(a)
except:
print('还需要更细心哦!正确答案是' + str((f * s)))
else:
if (a == f * s):
print('回答正确!你真棒!')
else:
print('还需要更细心哦!正确答案是' + str((f * s)))
elif (a == "q"):
print('小明再见!你会回来!')
件,需要立刻退出当前循环时(跳出循环),break语句可以用在for循环和while循环语句中。简单的说,break语句是会立即退出循环,在其后边的循环代码不会被执行。
break语句的用法
>>>x = 1
>>>while True:
>>> x+=1
>>> print x
假设while条件为真,则执行代码块会被执行。因为条件永远是真,程序就会一直被执行下行,进入死循环,直到你的电脑崩溃。那么怎么解决这个问题呢?python 跳出循环!这个时候就要用到break语句来结束或是continue跳出。
>>>x = 1
>>>while True:
>>> x+=1
>>> print x
>>> break
2
在代码最后加上break语句后,程序只运行了一次就被结束,这正说明了break语句是会立即退出循环的特性。你也可以给它设定另一个条件,当另一个条件被满足为真是,再执行退出操作。这就是下面要讲的while循环中的break和if语句,同样也可以在python中跳出for循环。
break和if语句如果在while循环中使用方法
braak语句可以出现在while或for循环主体内,大多时候是和if语句一同出现。还用上面的例题来说明:
>>>x = 1
>>>while True:
>>> x+=1
>>> print x
>>> if x >= 5:
>>> break
2
3
4
5
这里在结束之前,又多加了一个条件,当x大于等于5时再执行break语句。break语句是嵌套在if中的,要注意缩进问题,避免程序运行出错。
python中的break语句用处很多,在while和for语句中的用法大致相同,可以查看玩蛇网python学习交流平台的其它文章,这里就不一一举例了。
浏览这篇文章的网友,正在看:
Python 100例 练习题
树莓派python编程
正则表达式
JSON教程
Apache配置
MySQL数据库
Python标签页