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

來源:互聯網
上載者:User

(b)代碼如下,另外一種做法,逆序尋找:
def rfindchr(string, char):
    a = string
    index = -1
    k = len(a)
    for i in a[::-1]:
        k = k - 1
        if i == char:
            index = k
            print index
            break
    if index == -1: print 'index = ', index
   
a = raw_input('Please input a string ... ')
b = raw_input('Please input a character to be find in this string ... ')
rfindchr(a, b)    

(c)代碼如下:
def subchr(string, origchar, newchar):
    output = ''
    for i in origchar:
        if i == string:
            output = output + newchar
        else:
            output = output + i
    print output
           
subchr('c', 'abcddfasdfddacda', 'k')       
       
       

6-13.
字串.string模組包含三個函數,atoi(),atol()和atof(),他們分別負責把字串轉換成整型、長整型和浮點型數字。從Python 1.5起,Python的內建函數int()、long()、float()也可以做同樣的事了,本文來,complex()函數可以把字串轉換成複數(然而1.5之前,這些轉換函式只能工作於數字之上)自部落格園。
string模組中並沒有實現一個atoc()函數,那麼你來實現一個atoc(),接受單個字串做參數輸入,一個表示複數的字串,例如'-1.23e+4-5.67j',返回相應的複數對象。你不能用eval()函數,但可以使用complex()函數,而且你只能在如下的限制之下使用:complex():complex(real, imag)的real和imag都必須是浮點值。
【答案】
代碼如下:
def atoc(input):
    print complex(input).real
    print complex(input).imag

input = raw_input('please input a complex number ... ')
atoc(input)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.