1. 程式人生 > >《Python 程式設計:從入門到實踐》第二章練習題答案

《Python 程式設計:從入門到實踐》第二章練習題答案

字串知識點: string.title() string.rstrip() string.lstrip() string.strip() 字串部分練習題答案: name = ’ Ya Wei ’ message = (‘Hello %s,would you liake to learn some Python today?’ % name) print(name.title()) print(name.lower()) print(name.upper()) print(name.strip())

數字知識點: 兩個乘號()表示乘方:如: 106 = 1000000 string = str(int)

Python之禪:

程式碼編寫指導原則