《Python核心編程》第二版第160頁第六章練習 續二 -Python核心編程答案-自己做的-

來源:互聯網
上載者:User

6-5.
字串。
(a)更新你在練習2-7裡面的方案,使之可以每次向前向後都顯示一個字串的一個字元。
(b)通過掃描來判斷兩個字串是否匹配(不能使用比較操作符或者cmp()內建函數)。
附加題:在你的方案裡加入大小寫區分。
(c)判斷一個字串是否重現(後面跟前面一致)。附加題:在處理除了嚴格的迴文之外,加入對例如控制符號和空格的支援。
(d)接受一個字串,在其後面加一個反向的拷貝,構成一個迴文字串。

【參考】
2-7.
迴圈和字串。從使用者那裡接受一個字串輸入,然後逐字元顯示該字串。先用while迴圈實現,然後再用for迴圈實現。
【2-7的答案】
代碼如下:
a = raw_input("Please input a string ... ")
print 'Display in for loop:'
for i in a:
    print i,
print '\nDisplay in while loop:'
j = 0
while (j < len(a)):
    print a[j]
    j = j + 1

【答案】
(a)
代碼如下:
a = raw_input("Please input a string ... ")
j = 0
print a[j] + a[j+1],
while (j < len(a) - 2):
    j = j + 1
    print a[j-1] + a[j] + a[j+1],
j = len(a)
print a[j-2] + a[j-1]   
【(a)執行結果】
Please input a string ... apple
ap app ppl ple le

(b)
代碼如下:
a = raw_input("Please input a string A... ")
b = raw_input("Please input a string B... ")
trigger = True
if len(a) != len(b):
    trigger = False
else:
    for i in range(len(a)):
        if a[i] !=  b[i]: trigger = False
if trigger: print 'String A matches string B!'
else: print 'String A does not match string B!'
       
(c)
代碼如下:
a = raw_input("Please input a string ... ")
plalindrome = False
j = 1
while len(a) >= 2 and j <= len(a)-1:
    if a[j-1] == a[j] and j <= len(a) - 2:
        print a[j-1] + a[j],
        plalindrome = True
    if j == len(a)-1 and a[j] == a[j-1]:
        print a[j-1] + a[j],
        plalindrome = True
    j = j + 1
if not plalindrome: print 'No plalindrome!'
【未完】這段代碼還有最佳化的空間。另外,可能對題目含義理解並不清楚。

(d)
代碼如下:
a = raw_input("Please input a string ... ")
print a + a[::-1]
【未完】可能對題目含義理解並不清楚。
【(d)執行結果】
Please input a string ... apple
appleelppa

6-6.
字串。建立一個string.strip()的替代函數:接受一個字串,去掉它前面和後面的空格(如果使用string.*strip()函數那本練習就沒有意義了)
【答案】
代碼如下:
def strip(str):
    str_b = str[1:-1]
    return str_b

a = raw_input('Please input a string, begin and ending with space: ...')
if a[0] == ' ' and a[len(a)-1] == ' ':
    print strip(a)
else: print'This string should begin and end with space.'

關鍵詞:python核心編程答案 非官方 部落格園

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.