HOME/Articles/

simple python-example-98 (snippet)

Article Outline

Python example 'python-example-98'

python-example-98

Python example: python-example-98

#!/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()