Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1文字を大文字に変換するにはどうすればよいですか。たとえば、wiki から wIkI の場合、大文字にする方法を知っています。単語全体を大文字にすることも、1 文字だけ大文字にすることもできます。
多分:
a = 'text' b = ('t', 'x') print ''.join(x.upper() if x in b else x for x in a)