Latest web development tutorials

Pythonは演習98を含み、

Pythonの100リー Pythonの100リー

タイトル:キーボードの文字列からの入力、大文字にすべて小文字、次に保存するディスクファイル「テスト」に出力されます。

プログラム解析:なし。

ソースコード:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    fp = open('test.txt','w')
    string = raw_input('please input a string:\n')
    string = string.upper()
    fp.write(string)
    fp = open('test.txt','r')
    print fp.read()
    fp.close()

上の例の出力は、次のとおりです。

please input a string:
w3big.com
w3big.com

Pythonの100リー Pythonの100リー