摘要: text = 'happy python learning' print(text.count('n')) text = text.upper() print(text) text = text.capitalize() print(text) text = text.title() print(text + '\n') text = ' 000000happy python learn... 阅读全文
posted @ 2017-07-09 22:46 mxyzptlk 阅读(118) 评论(0) 推荐(0)
摘要: name = input('What is your name?\n') age = input('How old are you?\n') location = input('Where are you from?\n') hobby = input('What do you like?\n') result = 'Hello {}, age of {}, from {}, and you ... 阅读全文
posted @ 2017-07-09 22:29 mxyzptlk 阅读(145) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-07-09 22:23 mxyzptlk 阅读(69) 评论(0) 推荐(0)