今天给大家分享30道Python练习题,建议大家先独立思考一下解题思路,再查看答案。
1. 已知一个字符串为 “hello_world_JMzz”,如何得到一个队列
[“hello”,”world”,”JMzz”] ?
使用 split 函数,分割字符串,并且将数据转换成列表类型:
test='hello_world_JMzz'print(test.split("_"))
结果:
['hello','world','JMzz']
2. 有个列表 [“hello”, “world”, “JMzz”],如何把列表里面的字符串联起来,得到字符串 “hello_world_JMzz”?
使用 join 函数将数据转换成字符串:
test=["hello","world","JMzz"]print("_".join(test))
结果:
hello_world_JMzz
如果不依赖 python 提供的 join 方法,还可以通过 for 循环,然后将字符串拼接,但是在用“+”连接字符串时,结果会生成新的对象,使用 join 时结果只是将原列表中的元素拼接起来,所以 join 效率比较高。
for 循环拼接如下:
test=["hello","world","JMzz"]#定义一个空字符串j=''#通过for循环打印出列表中的数据foriintest:j=j+"_"+i#因为通过上面的字符串拼接,得到的数据是“_hello_world_JMzz”,前面会多一个下划线_,所以把这个下划线去掉print(j.lstrip("_"))
3. 把字符串 s 中的每个空格替换成”%20”,输入:s = “We are happy.”,输出:“We%20are%20happy.”。
使用 replace 函数,替换字符换即可:
s='Wearehappy.'print(s.replace('','%20'))
结果:
We%20are%20happy.
4. Python 如何打印 99 乘法表?
for 循环打印:
foriinrange(1,10):forjinrange(1,i+1):print('{}x{}={}\t'.format(j,i,i*j),end='')print()
while 循环实现:
i=1whilei<=9:j=1whilej<=i:print("%d*%d=%-2d"%(i,j,i*j),end='')#%d:整数的占位符,'-2'代表靠左对齐,两个占位符j+=1print()i+=1
结果:
1x1=11x2=22x2=41x3=32x3=63x3=91x4=42x4=83x4=124x4=161x5=52x5=103x5=154x5=205x5=251x6=62x6=123x6=184x6=245x6=306x6=361x7=72x7=143x7=214x7=285x7=356x7=427x7=491x8=82x8=163x8=244x8=325x8=406x8=487x8=568x8=641x9=92x9=183x9=274x9=365x9=456x9=547x9=638x9=729x9=81
5. 从下标 0 开始索引,找出单词 “welcome” 在字符串“Hello, welcome to my world.” 中出现的位置,找不到返回 -1。
deftest():message='Hello,welcometomyworld.'world='welcome'ifworldinmessage:returnmessage.find(world)else:return-1print(test())结果:7
6. 统计字符串“Hello, welcome to my world.” 中字母 w 出现的次数。
deftest():message='Hello,welcometomyworld.'#计数num=0#for循环messageforiinmessage:#判断如果‘w’字符串在message中,则num+1if'w'ini:num+=1returnnumprint(test())#结果2
7. 输入一个字符串 str,输出第 m 个只出现过 n 次的字符,如在字符串 gbgkkdehh 中,找出第 2 个只出现 1 次的字符,输出结果:d
deftest(str_test,num,counts):""":paramstr_test:字符串:paramnum:字符串出现的次数:paramcount:字符串第几次出现的次数:return:"""#定义一个空数组,存放逻辑处理后的数据list=[]#for循环字符串的数据foriinstr_test:#使用count函数,统计出所有字符串出现的次数count=str_test.count(i,0,len(str_test))#判断字符串出现的次数与设置的counts的次数相同,则将数据存放在list数组中ifcount==num:list.append(i)#返回第n次出现的字符串returnlist[counts-1]print(test('gbgkkdehh',1,2))结果:d
8. 判断字符串 a = “welcome to my world” 是否包含单词 b = “world”,包含返回 True,不包含返回 False。
deftest():message='welcometomyworld'world='world'ifworldinmessage:returnTruereturnFalseprint(test())结果:True
9. 从 0 开始计数,输出指定字符串 A = “hello” 在字符串 B = “hi how are you hello world, hello JMzz!”中第一次出现的位置,如果 B 中不包含 A,则输出 -1。
deftest():message='hihowareyouhelloworld,helloJMzz!'world='hello'returnmessage.find(world)print(test())结果:15
10. 从 0 开始计数,输出指定字符串 A = “hello”在字符串 B = “hi how are you hello world, hello JMzz!”中最后出现的位置,如果 B 中不包含 A,则输出 -1。
deftest(string,str):#定义last_position初始值为-1last_position=-1whileTrue:position=string.find(str,last_position+1)ifposition==-1:returnlast_positionlast_position=positionprint(test('hihowareyouhelloworld,helloJMzz!','hello'))结果:28
11. 给定一个数 a,判断一个数字是否为奇数或偶数。
whileTrue:try:#判断输入是否为整数num=int(input('输入一个整数:'))#不是纯数字需要重新输入exceptValueError:print("输入的不是整数!")continueifnum%2==0:print('偶数')else:print('奇数')break结果:输入一个整数:100偶数
12. 输入一个姓名,判断是否姓王。
deftest():user_input=input("请输入您的姓名:")ifuser_input[0]=='王':return"用户姓王"return"用户不姓王"print(test())结果:请输入您的姓名:王总用户姓王
13. 如何判断一个字符串是不是纯数字组成?
利用 Python 提供的类型转行,将用户输入的数据转换成浮点数类型,如果转换抛异常,则判断数字不是纯数字组成。
deftest(num):try:returnfloat(num)exceptValueError:return"请输入数字"print(test('133w3'))
14. 将字符串 a = “This is string example….wow!” 全部转成大写,字符串 b = “Welcome To My World” 全部转成小写。
a='Thisisstringexample….wow!'b='WelcomeToMyWorld'print(a.upper())print(b.lower())
15. 将字符串 a = “ welcome to my world ”首尾空格去掉
Python 提供了strip() 方法,可以去除首尾空格,rstrip() 去掉尾部空格,lstrip() 去掉首部空格,replace(” “, “”) 去掉全部空格。
a='welcometomyworld'print(a.strip())
还可以通过递归的方式实现:
deftrim(s):flag=0ifs[:1]=='':s=s[1:]flag=1ifs[-1:]=='':s=s[:-1]flag=1ifflag==1:returntrim(s)else:returnsprint(trim('Helloworld!'))
通过 while 循环实现:
deftrim(s):while(True):flag=0ifs[:1]=='':s=s[1:]flag=1ifs[-1:]=='':s=s[:-1]flag=1ifflag==0:breakreturnsprint(trim('Helloworld!'))
16. 将字符串 s = “ajldjlajfdljfddd”,去重并从小到大排序输出”adfjl”。
deftest():s='ajldjlajfdljfddd'#定义一个数组存放数据str_list=[]#for循环s字符串中的数据,然后将数据加入数组中foriins:#判断如果数组中已经存在这个字符串,则将字符串移除,加入新的字符串ifiinstr_list:str_list.remove(i)str_list.append(i)#使用sorted方法,对字母进行排序a=sorted(str_list)#sorted方法返回的是一个列表,这边将列表数据转换成字符串return"".join(a)print(test())结果:adfjl
17. 打印出如下图案(菱形):
deftest():n=8foriinrange(-int(n/2),int(n/2)+1):print(""*abs(i),"*"*abs(n-abs(i)*2))print(test())结果:********************************
18. 给一个不多于 5 位的正整数(如 a = 12346),求它是几位数和逆序打印出各位数字。
classTest:#计算数字的位数deftest_num(self,num):try:#定义一个length的变量,来计算数字的长度length=0whilenum!=0:#判断当num不为0的时候,则每次都除以10取整length+=1num=int(num)//10iflength>5:return"请输入正确的数字"returnlengthexceptValueError:return"请输入正确的数字"#逆序打印出个位数deftest_sorted(self,num):ifself.test_num(num)!="请输入正确的数字":#逆序打印出数字sorted_num=num[::-1]#返回逆序的个位数returnsorted_num[-1]print(Test().test_sorted('12346'))结果:1
19. 如果一个 3 位数等于其各位数字的立方和,则称这个数为水仙花数。例如:153 = 1³+ 5³+ 3³,因此 153 就是一个水仙花数。那么如何求 1000 以内的水仙花数(3 位数)。
deftest():fornuminrange(100,1000):i=num//100j=num//10%10k=num%10ifi**3+j**3+k**3==num:print(str(num)+"是水仙花数")test()
20. 求 1+2+3…+100 相加的和。
i=0forjinrange(101):i=j+iprint(i)结果:5050
21. 计算 1-2+3-4+5-…-100 的值。
deftest(sum_to):#定义一个初始值sum_all=0#循环想要计算的数据foriinrange(1,sum_to+1):sum_all+=i*(-1)**(1+i)returnsum_allif__name__=='__main__':result=test(sum_to=100)print(result)-50
22. 现有计算公式 1³ + 2³ + 3³ + 4³ + …….+ n³,如何实现:当输入 n = 5 时,输出 225(对应的公式 : 1³ + 2³ + 3³ + 4³ + 5³ = 225)。
deftest(n):sum=0foriinrange(1,n+1):sum+=i*10+ireturnsumprint(test(5))结果:225
23. 已知 a 的值为“hello”,b 的值为“world”,如何交换 a 和 b 的值,得到 a 的值为“world”,b 的值为”hello”?
a='hello'b='world'c=aa=bb=cprint(a,b)
24. 如何判断一个数组是对称数组?
例如 [1,2,0,2,1],[1,2,3,3,2,1],这样的数组都是对称数组。用 Python 判断,是对称数组打印 True,不是打印 False。
deftest():x=[1,'a',0,'2',0,'a',1]#通过下标的形式,将字符串逆序进行比对ifx==x[::-1]:returnTruereturnFalseprint(test())结果:True
25. 如果有一个列表 a = [1,3,5,7,11],那么如何让它反转成 [11,7,5,3,1],并且取到奇数位值的数字 [1,5,11]?
deftest():a=[1,3,5,7,11]#逆序打印数组中的数据print(a[::-1])#定义一个计数的变量count=0foriina:#判断每循环列表中的一个数据,则计数器中会+1count+=1#如果计数器为奇数,则打印出来ifcount%2!=0:print(i)test()结果:[11,7,5,3,1]1511
26. 对列表 a = [1, 6, 8, 11, 9, 1, 8, 6, 8, 7, 8] 中的数字从小到大排序。
a=[1,6,8,11,9,1,8,6,8,7,8]print(sorted(a))结果:[1,1,6,6,7,8,8,8,8,9,11]
27. 找出列表 L1 = [1, 2, 3, 11, 2, 5, 3, 2, 5, 33, 88] 中最大值和最小值。
L1=[1,2,3,11,2,5,3,2,5,33,88]print(max(L1))print(min(L1))结果:881
上面是通过 Python 自带的函数实现,如下,可以自己写一个计算程序:
classTest(object):def__init__(self):#测试的列表数据self.L1=[1,2,3,11,2,5,3,2,5,33,88]#从列表中取第一个值,对于数据大小比对self.num=self.L1[0]deftest_small_num(self,count):""":paramcount:count为1,则表示计算最大值,为2时,表示最小值:return:"""#for循环查询列表中的数据foriinself.L1:ifcount==1:#循环判断当数组中的数据比初始值小,则将初始值替换ifi>self.num:self.num=ielifcount==2:ifi<self.num:self.num=ielifcount!=1orcount!=2:return"请输入正确的数据"returnself.numprint(Test().test_small_num(1))print(Test().test_small_num(2))结果:881
28. 找出列表 a = [“hello”, “world”, “JMzz”, “congratulations”] 中单词最长的一个。
deftest():a=["hello","world","JMzz","congratulations"]#统计数组中第一个值的长度length=len(a[0])foriina:#循环数组中的数据,当数组中的数据比初始值length中的值长,则替换掉length的默认值iflen(i)>length:length=ireturnlengthprint(test())结果:congratulations
29. 取出列表 L1 = [1, 2, 3, 11, 2, 5, 3, 2, 5, 33, 88] 中最大的三个值。
deftest():L1=[1,2,3,11,2,5,3,2,5,33,88]returnsorted(L1)[:3]print(test())结果:[88,33,11]
30. 把列表 a = [1, -6, 2, -5, 9, 4, 20, -3] 中的数字绝对值。
deftest():a=[1,-6,2,-5,9,4,20,-3]#定义一个数组,存放处理后的绝对值数据lists=[]foriina:#使用abs()方法处理绝对值lists.append(abs(i))returnlistsprint(test())结果:[1,6,2,5,9,4,20,3]