一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

值得收藏的30道Python練手題(附詳細(xì)答案)

 oldzhoua 2023-01-03 發(fā)布于廣東

來源丨Python極客專欄

1. 已知一個(gè)字符串為 “hello_world_yoyo”,如何得到一個(gè)隊(duì)列 [“hello”,”world”,”yoyo”] ?

  • 使用 split 函數(shù),分割字符串,并且將數(shù)據(jù)轉(zhuǎn)換成列表類型:
test = 'hello_world_yoyo'
print(test.split('_'))
12
  • 結(jié)果:
['hello', 'world', 'yoyo']


2. 有個(gè)列表 [“hello”, “world”, “yoyo”],如何把列表里面的字符串聯(lián)起來,得到字符串 “hello_world_yoyo”?

  • 使用 join 函數(shù)將數(shù)據(jù)轉(zhuǎn)換成字符串:
test = ['hello', 'world', 'yoyo']
print('_'.join(test))
  • 結(jié)果:
hello_world_yoyo

如果不依賴 python 提供的 join 方法,還可以通過 for 循環(huán),然后將字符串拼接,但是在用“+”連接字符串時(shí),結(jié)果會(huì)生成新的對(duì)象,使用 join 時(shí)結(jié)果只是將原列表中的元素拼接起來,所以 join 效率比較高。for 循環(huán)拼接如下:

test = ['hello', 'world', 'yoyo']
# 定義一個(gè)空字符串
j = ''
# 通過 for 循環(huán)打印出列表中的數(shù)據(jù)
for i in test:
    j = j + '_' + i
# 因?yàn)橥ㄟ^上面的字符串拼接,得到的數(shù)據(jù)是“_hello_world_yoyo”,前面會(huì)多一個(gè)下劃線_,所以把這個(gè)下劃線去掉
print(j.lstrip('_'))


3. 把字符串 s 中的每個(gè)空格替換成”%20”,輸入:s = “We are happy.”,輸出:“We%20are%20happy.”。

  • 使用 replace 函數(shù),替換字符換即可:
s = 'We are happy.'
print(s.replace(' ''%20'))
12
  • 結(jié)果:
We%20are%20happy.


4. Python 如何打印 99 乘法表?

  • for 循環(huán)打?。?/section>
for i in range(110):
    for j in range(1, i+1):
        print('{}x{}={}\t'.format(j, i, i*j), end='')
    print()
  • while 循環(huán)實(shí)現(xiàn):
i = 1
while i <= 9:
    j = 1
    while j <= i:
        print('%d*%d=%-2d'%(i,j,i*j),end = ' ')  # %d: 整數(shù)的占位符,'-2'代表靠左對(duì)齊,兩個(gè)占位符
        j += 1
    print()
    i += 1
  • 結(jié)果
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. 從下標(biāo) 0 開始索引,找出單詞 “welcome” 在字符串“Hello, welcome to my world.” 中出現(xiàn)的位置,找不到返回 -1。

def test():
    message = 'Hello, welcome to my world.'
    world = 'welcome'
    if world in message:
        return message.find(world)
    else:
        return -1


print(test())

結(jié)果:
7


6. 統(tǒng)計(jì)字符串“Hello, welcome to my world.” 中字母 w 出現(xiàn)的次數(shù)。

def test():
    message = 'Hello, welcome to my world.'
    # 計(jì)數(shù)
    num = 0
    # for 循環(huán) message
    for i in message:
        # 判斷如果 'w’ 字符串在 message 中,則 num +1
        if 'w' in i:
            num += 1
    return num


print(test())

# 結(jié)果
2


7. 輸入一個(gè)字符串 str,輸出第 m 個(gè)只出現(xiàn)過 n 次的字符,如在字符串 gbgkkdehh 中,找出第 2 個(gè)只出現(xiàn) 1 次的字符,輸出結(jié)果:d

def test(str_test, num, counts):
  
    # 定義一個(gè)空數(shù)組,存放邏輯處理后的數(shù)據(jù)
    list = []

    # for循環(huán)字符串的數(shù)據(jù)
    for i in str_test:
        # 使用 count 函數(shù),統(tǒng)計(jì)出所有字符串出現(xiàn)的次數(shù)
        count = str_test.count(i, 0, len(str_test))

        # 判斷字符串出現(xiàn)的次數(shù)與設(shè)置的counts的次數(shù)相同,則將數(shù)據(jù)存放在list數(shù)組中
        if count == num:
            list.append(i)

    # 返回第n次出現(xiàn)的字符串
    return list[counts-1]


print(test('gbgkkdehh'12))

結(jié)果:
d


8. 判斷字符串 a = “welcome to my world” 是否包含單詞 b = “world”,包含返回 True,不包含返回 False。

def test():
    message = 'welcome to my world'
    world = 'world'

    if world in message:
        return True
    return False


print(test())

結(jié)果:
True


9. 從 0 開始計(jì)數(shù),輸出指定字符串 A = “hello” 在字符串 B = “hi how are you hello world, hello yoyo!”中第一次出現(xiàn)的位置,如果 B 中不包含 A,則輸出 -1。

def test():
    message = 'hi how are you hello world, hello yoyo!'
    world = 'hello'

    return message.find(world)


print(test())

結(jié)果:
15


10. 從 0 開始計(jì)數(shù),輸出指定字符串 A = “hello”在字符串 B = “hi how are you hello world, hello yoyo!”中最后出現(xiàn)的位置,如果 B 中不包含 A,則輸出 -1。

def test(string, str):
    # 定義 last_position 初始值為 -1
    last_position = -1
    while True:
        position = string.find(str, last_position+1)
        if position == -1:
            return last_position
        last_position = position


print(test('hi how are you hello world, hello yoyo!''hello'))

結(jié)果:
28

圖片

  源碼下載  

回復(fù) 1107 免費(fèi)下載

11. 給定一個(gè)數(shù) a,判斷一個(gè)數(shù)字是否為奇數(shù)或偶數(shù)。

while True:
    try:
        # 判斷輸入是否為整數(shù)
        num = int(input('輸入一個(gè)整數(shù):'))
    # 不是純數(shù)字需要重新輸入
    except ValueError: 
        print('輸入的不是整數(shù)!')
        continue
    if num % 2 == 0:
        print('偶數(shù)')
    else:
        print('奇數(shù)')
    break

結(jié)果:
輸入一個(gè)整數(shù):100
偶數(shù)


12. 輸入一個(gè)姓名,判斷是否姓王。

def test():
    user_input = input('請(qǐng)輸入您的姓名:')

    if user_input[0] == '王':
        return '用戶姓王'

    return '用戶不姓王'

print(test())

結(jié)果:
請(qǐng)輸入您的姓名:王總
用戶姓王



13. 如何判斷一個(gè)字符串是不是純數(shù)字組成?

利用 Python 提供的類型轉(zhuǎn)行,將用戶輸入的數(shù)據(jù)轉(zhuǎn)換成浮點(diǎn)數(shù)類型,如果轉(zhuǎn)換拋異常,則判斷數(shù)字不是純數(shù)字組成。

def test(num):
    try:
        return float(num)
    except ValueError:
        return '請(qǐng)輸入數(shù)字'


print(test('133w3'))


14. 將字符串 a = “This is string example….wow!” 全部轉(zhuǎn)成大寫,字符串 b = “Welcome To My World” 全部轉(zhuǎn)成小寫。

a = 'This is string example….wow!'
b = 'Welcome To My World'

print(a.upper())
print(b.lower())


15. 將字符串 a = “ welcome to my world ”首尾空格去掉

  • Python 提供了strip() 方法,可以去除首尾空格,rstrip() 去掉尾部空格,lstrip() 去掉首部空格,replace( , “”) 去掉全部空格。
a = '  welcome to my world   '
print(a.strip())
  • 還可以通過遞歸的方式實(shí)現(xiàn):
def trim(s):
    flag = 0
    if s[:1]==' ':
        s = s[1:]
        flag = 1
    if s[-1:] == ' ':
        s = s[:-1]
        flag = 1
    if flag==1:
        return    trim(s)
    else:
        return s
print(trim('  Hello world!  '))
  • 通過 while 循環(huán)實(shí)現(xiàn):
def trim(s):
    while(True):
        flag = 0
        if s[:1]==' ':
            s = s[1:]
            flag = 1
        if s[-1:] == ' ':
            s = s[:-1]
            flag = 1
        if flag==0:
            break
    return s
print(trim('  Hello world!  '))


16. 將字符串 s = “ajldjlajfdljfddd”,去重并從小到大排序輸出”adfjl”。

def test():
    s = 'ajldjlajfdljfddd'
    # 定義一個(gè)數(shù)組存放數(shù)據(jù)
    str_list = []
    # for循環(huán)s字符串中的數(shù)據(jù),然后將數(shù)據(jù)加入數(shù)組中
    for i in s:
        # 判斷如果數(shù)組中已經(jīng)存在這個(gè)字符串,則將字符串移除,加入新的字符串
        if i in str_list:
            str_list.remove(i)

        str_list.append(i)
    # 使用 sorted 方法,對(duì)字母進(jìn)行排序
    a = sorted(str_list)
    # sorted方法返回的是一個(gè)列表,這邊將列表數(shù)據(jù)轉(zhuǎn)換成字符串
    return ''.join(a)


print(test())

結(jié)果:
adfjl


17. 打印出如下圖案(菱形):

圖片
在這里插入圖片描述
def test():
    n = 8
    for i in range(-int(n/2), int(n/2) + 1):
        print(' '*abs(i), '*'*abs(n-abs(i)*2))


print(test())
結(jié)果:
    **
   ****
  ******
 ********
  ******
   ****
    **


18.  給一個(gè)不多于 5 位的正整數(shù)(如 a = 12346),求它是幾位數(shù)和逆序打印出各位數(shù)字。

class Test:

    # 計(jì)算數(shù)字的位數(shù)
    def test_num(self, num):
        try:
            # 定義一個(gè) length 的變量,來計(jì)算數(shù)字的長度
            length = 0
            while num != 0:
                # 判斷當(dāng) num 不為 0 的時(shí)候,則每次都除以10取整
                length += 1
                num = int(num) // 10
            if length > 5:
                return '請(qǐng)輸入正確的數(shù)字'
            return length
        except ValueError:
            return '請(qǐng)輸入正確的數(shù)字'

    # 逆序打印出個(gè)位數(shù)
    def test_sorted(self, num):
        if self.test_num(num) != '請(qǐng)輸入正確的數(shù)字':
            # 逆序打印出數(shù)字
            sorted_num = num[::-1]
            # 返回逆序的個(gè)位數(shù)
            return sorted_num[-1]

print(Test().test_sorted('12346'))

結(jié)果:
1


19. 如果一個(gè) 3 位數(shù)等于其各位數(shù)字的立方和,則稱這個(gè)數(shù)為水仙花數(shù)。例如:153 = 13 + 53 + 33,因此 153 就是一個(gè)水仙花數(shù)。那么如何求 1000 以內(nèi)的水仙花數(shù)(3 位數(shù))。

test()

def test():
    for num in range(1001000):
        i = num // 100
        j = num // 10 % 10
        k = num % 10
        if i ** 3 + j ** 3 + k ** 3 == num:
            print(str(num) + '是水仙花數(shù)')



20. 求 1+2+3…+100 相加的和。

i = 1
for j in range(101):
    i = j + i

print(i)

結(jié)果:
5051


21. 計(jì)算 1-2+3-4+5-…-100 的值。

def test(sum_to):
    
    # 定義一個(gè)初始值
    sum_all = 0
    # 循環(huán)想要計(jì)算的數(shù)據(jù)
    for i in range(1, sum_to + 1):
        sum_all += i * (-1) ** (1 + i)
    return sum_all


if __name__ == '__main__':
    result = test(sum_to=100)
    print(result)

-50


22. 現(xiàn)有計(jì)算公式 13 + 23 + 33 + 43 + …….+ n3,如何實(shí)現(xiàn):當(dāng)輸入 n = 5 時(shí),輸出 225(對(duì)應(yīng)的公式 : 13 + 23 + 33 + 43 + 53 = 225)。

def test(n):
    sum = 0
    for i in range(1, n+1):
        sum += i*10+i
    return sum

print(test(5))

結(jié)果:
225


23. 已知 a 的值為“hello”,b 的值為“world”,如何交換 a 和 b 的值,得到 a 的值為“world”,b 的值為”hello”?

a = 'hello'
b = 'world'

c = a
a = b
b = c
print(a, b)


24. 如何判斷一個(gè)數(shù)組是對(duì)稱數(shù)組?

  • 例如 [1,2,0,2,1],[1,2,3,3,2,1],這樣的數(shù)組都是對(duì)稱數(shù)組。
  • 用 Python 判斷,是對(duì)稱數(shù)組打印 True,不是打印 False。

def test():
    x = [1'a'0'2'0'a'1]
    # 通過下標(biāo)的形式,將字符串逆序進(jìn)行比對(duì)
    if x == x[::-1]:
        return True
    return False

print(test())

結(jié)果:
True


25. 如果有一個(gè)列表 a = [1,3,5,7,11],那么如何讓它反轉(zhuǎn)成 [11,7,5,3,1],并且取到奇數(shù)位值的數(shù)字 [1,5,11]?

def test():
    a = [135711]
    # 逆序打印數(shù)組中的數(shù)據(jù)
    print(a[::-1])
    # 定義一個(gè)計(jì)數(shù)的變量
    count = 0
    for i in a:
        # 判斷每循環(huán)列表中的一個(gè)數(shù)據(jù),則計(jì)數(shù)器中會(huì) +1
        count += 1
        # 如果計(jì)數(shù)器為奇數(shù),則打印出來
        if count % 2 != 0:
            print(i)


test()

結(jié)果:
[117531]
1
5
11


26. 對(duì)列表 a = [1, 6, 8, 11, 9, 1, 8, 6, 8, 7, 8] 中的數(shù)字從小到大排序。

a = [168119186878]
print(sorted(a))

結(jié)果:
[116678888911]


27. 找出列表 L1 = [1, 2, 3, 11, 2, 5, 3, 2, 5, 33, 88] 中最大值和最小值。

L1 = [12311253253388]
print(max(L1))
print(min(L1))

結(jié)果:
88
1
  • 上面是通過 Python 自帶的函數(shù)實(shí)現(xiàn),如下,可以自己寫一個(gè)計(jì)算程序:
class Test(object):

    def __init__(self):
        # 測試的列表數(shù)據(jù)
        self.L1 = [12311253253388]

        # 從列表中取第一個(gè)值,對(duì)于數(shù)據(jù)大小比對(duì)
        self.num = self.L1[0]

    def test_small_num(self, count):
        

        :param count: count為 1,則表示計(jì)算最大值,為 2 時(shí),表示最小值
        :return:
        

        # for 循環(huán)查詢列表中的數(shù)據(jù)
        for i in self.L1:
            if count == 1:
                # 循環(huán)判斷當(dāng)數(shù)組中的數(shù)據(jù)比初始值小,則將初始值替換
                if i > self.num:
                    self.num = i
            
            elif count == 2:
                if i < self.num:
                    self.num = i
                    
            elif count != 1 or count != 2:
                return 請(qǐng)輸入正確的數(shù)據(jù)

        return self.num


print(Test().test_small_num(1))
print(Test().test_small_num(2))
結(jié)果:
88
1


28. 找出列表 a = [“hello”, “world”, “yoyo”, “congratulations”] 中單詞最長的一個(gè)。

def test():
    a = ['hello''world''yoyo''congratulations']
    
    # 統(tǒng)計(jì)數(shù)組中第一個(gè)值的長度
    length = len(a[0])
    
    for i in a:
        # 循環(huán)數(shù)組中的數(shù)據(jù),當(dāng)數(shù)組中的數(shù)據(jù)比初始值length中的值長,則替換掉length的默認(rèn)值
        if len(i) > length:
            length = i
    return length


print(test())

結(jié)果:
congratulations


29. 取出列表 L1 = [1, 2, 3, 11, 2, 5, 3, 2, 5, 33, 88] 中最大的三個(gè)值。

def test():
    L1 = [12311253253388]
    return sorted(L1)[:3]

print(test())

結(jié)果:
[122]


30. 把列表 a = [1, -6, 2, -5, 9, 4, 20, -3] 中的數(shù)字絕對(duì)值從小到大排序。

def test():
    a = [1-62-59420-3]
    # 定義一個(gè)數(shù)組,存放處理后的絕對(duì)值數(shù)據(jù)
    lists = []
    for i in a:
     # 使用 abs() 方法處理絕對(duì)值
        lists.append(abs(i))
    return lists

print(test())

結(jié)果:
[162594203]

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多

    久久三级国外久久久三级| 亚洲一区二区精品久久av| 国产av乱了乱了一区二区三区| 日本熟女中文字幕一区| 成人午夜视频在线播放| 中文字幕91在线观看| 日本本亚洲三级在线播放| a久久天堂国产毛片精品| 精品少妇一区二区视频| 99少妇偷拍视频在线| 亚洲熟女一区二区三四区| 欧美激情区一区二区三区| 五月婷婷综合激情啪啪| 国产一二三区不卡视频| 欧美精品中文字幕亚洲| 丰满人妻少妇精品一区二区三区| 亚洲精品中文字幕欧美| 日本深夜福利在线播放| 国产免费操美女逼视频| 亚洲中文字幕一区三区| 精品日韩国产高清毛片| 69精品一区二区蜜桃视频 | 亚洲欧美日产综合在线网| 国产精品免费视频久久| 国产传媒中文字幕东京热| 亚洲欧美国产网爆精品| 蜜桃传媒视频麻豆第一区| 蜜桃传媒视频麻豆第一区| 亚洲中文字幕视频在线播放| 国产精品一区二区日韩新区| 亚洲国产一区精品一区二区三区色| 色哟哟哟在线观看视频| 在线观看免费午夜福利| 免费在线观看激情小视频| 国产成人午夜在线视频| 最近最新中文字幕免费| 亚洲午夜福利不卡片在线| 久久久精品日韩欧美丰满| 日本黄色美女日本黄色| 国产日产欧美精品视频| 在线一区二区免费的视频 |