今天给大家分享30道Python练习题,建议大家先独立思考一下解题思路,再查看答案。 【文末有惊喜】
1.已知一个字符串为 “hello_world_yoyo”,如何得到一个队列
[“hello”,”world”,”yoyo”] ?
使用 split 函数,分割字符串,并且将数据转换成列表类型:
test = 'hello_world_yoyo'``print(test.split("_"))``12
结果:
['hello', 'world', 'yoyo']
2. 有个列表 [“hello”, “world”, “yoyo”],如何把列表里面的字符串联起来,得到字符串 “hello_world_yoyo”?
使用 join 函数将数据转换成字符串:
test = ["hello", "world", "yoyo"]``print("_".join(test))
结果:
hello_world_yoyo
如果不依赖 python 提供的 join 方法,还可以通过 for 循环,然后将字符串拼接,但是在用“+”连接字符串时,结果会生成新的对象,使用 join 时结果只是将原列表中的元素拼接起来,所以 join 效率比较高。
for 循环拼接如下:
test = ["hello", "world", "yoyo"]``# 定义一个空字符串``j = ''``# 通过 for 循环打印出列表中的数据``for i in test:` `j = j + "_" + i``# 因为通过上面的字符串拼接,得到的数据是“_hello_world_yoyo”,前面会多一个下划线_,所以把这个下划线去掉``print(j.lstrip("_"))
3. 把字符串 s 中的每个空格替换成”%20”,输入:s = “We are happy.”,输出:“We%20are%20happy.”。
使用 replace 函数,替换字符换即可:
s = 'We are happy.'``print(s.replace(' ', '%20'))``12
结果:
We%20are%20happy.
4. Python 如何打印 99 乘法表?
for 循环打印:
for i in range(1, 10):` `for j in range(1, i+1):` `print('{}x{}={}\t'.format(j, i, i*j), end='')` `print()
while 循环实现:
i = 1``while i <= 9:` `j = 1` `while j <= i:` `print("%d*%d=%-2d"%(i,j,i*j),end = ' ') # %d: 整数的占位符,'-2'代表靠左对齐,两个占位符` `j += 1` `print()` `i += 1
结果:
1x1=1` `1x2=2 2x2=4` `1x3=3 2x3=6 3x3=9` `1x4=4 2x4=8 3x4=12 4x4=16` `1x5=5 2x5=10 3x5=15 4x5=20 5x5=25` `1x6=6 2x6=12 3x6=18 4x6=24 5x6=30 6x6=36` `1x7=7 2x7=14 3x7=21 4x7=28 5x7=35 6x7=42 7x7=49` `1x8=8 2x8=16 3x8=24 4x8=32 5x8=40 6x8=48 7x8=56 8x8=64` `1x9=9 2x9=18 3x9=27 4x9=36 5x9=45 6x9=54 7x9=63 8x9=72 9x9=81
5. 从下标 0 开始索引,找出单词 “welcome” 在字符串“Hello, welcome to my world.” 中出现的位置,找不到返回 -1。
def test():` `message = 'Hello, welcome to my world.'` `world = 'welcome'` `if world in message:` `return message.find(world)` `else:` `return -1`` ``print(test())``
结果:
7
6. 统计字符串“Hello, welcome to my world.” 中字母 w 出现的次数。
def test():` `message = 'Hello, welcome to my world.'` `# 计数` `num = 0` `# for 循环 message` `for i in message:` `# 判断如果 ‘w’ 字符串在 message 中,则 num +1` `if 'w' in i:` `num += 1` `return num`` ``print(test())``# 结果``2
7. 输入一个字符串 str,输出第 m 个只出现过 n 次的字符,如在字符串 gbgkkdehh 中,找出第 2 个只出现 1 次的字符,输出结果:d
def test(str_test, num, counts):` `"""` `:param str_test: 字符串` `:param num: 字符串出现的次数` `:param count: 字符串第几次出现的次数` `:return:` `"""` `# 定义一个空数组,存放逻辑处理后的数据` `list = []`` ` `# for循环字符串的数据` `for i in str_test:` `# 使用 count 函数,统计出所有字符串出现的次数` `count = str_test.count(i,