練習問題(11〜15)

実行例は「stupa.sarnath」の「Google Colabotry」環境に保存してある

"""

11. 文字列(replace)
変数に文字列'some1'を代入し,この文字列中の1をoneに変換してください.

期待する出力:someone

12. 文字列(lower)
変数に文字列'This Is A Sentence .'を代入し,この文字列を全て小文字に変換してください.

期待する出力:this is a sentence .

13. 文字列(upper)
変数に文字列'This Is A Sentence .'を代入し,この文字列を全て大文字に変換してください.

期待する出力:THIS IS A SENTENCE .

14. 文字列(文字数)
変数に文字列'How many characters?'を代入し,この文字列の文字数を出力してください.空白も含めるものとします.

期待する出力:20

15. 文字列 → 数値
変数aに文字列'34'を代入し,変数bに文字列'43'を代入し,これらを数字と見なした時の和を出力してください.

期待する出力:77

"""
#
#
#11. 文字列(replace)
#
print("11. 文字列(replace)")
x = 'some1'
print(x.replace('1', 'one'))
#
#12. 文字列(lower)
#
print("12. 文字列(lower)")
x = 'This Is A Sentence .'
print(x.lower())
#
#13. 文字列(upper)
#
print("13. 文字列(upper)")
x = 'This Is A Sentence .'
print(x.upper())
#
#14. 文字列(文字数)
#
print("14. 文字列(文字数)")
x = 'How many characters?'
print(len(x))
#
#15. 文字列 → 数値
#
print("15. 文字列 → 数値")
a = '34'
b = '43'
print(int(a)+ int(b))