(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)