我有在輸入一些字符串值,像這樣:如何實現字符串操作?
hellOWOrLD.hELLOWORLD.
輸出我需要:
Helloworld. Helloworld.
或者輸入:
A.B.A.C.A.B.A.
和輸出:
A. B. A. C. A. B. A.
因此,當你看到我需要點分離的單詞。 同樣任務的規則是,如果輸入不能體改輸出爲1
於是,我就這樣做:
import sys
input = raw_input().lower().split('.')
for el in input:
sys.stdout.write(el.capitalize() + '.',)
所以這是不好的代碼。你可以幫我嗎?
你所說的 「不好的代碼」 是什麼意思?瞭解如何創建[mcve]。 –