s = 'the brown fox'
…在这里做点什么…
s应为:
s
'The Brown Fox'
做到这一点最简单的方法是什么?
要将字符串中每个单词的首字母大写,可以使用title()Python 中的方法。操作方法如下:
title()
s = 'the brown fox' s = s.title()
此后,s将是: