Latest web development tutorials

Python meliputi latihan 98

Python 100 Li Python 100 Li

Judul: input keyboard dari string, semua huruf kecil ke huruf besar huruf, dan kemudian output ke file disk "test" untuk menyimpan.

Analisis Program: Tidak ada.

Source Code:

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

Contoh di atas output:

please input a string:
w3big.com
w3big.com

Python 100 Li Python 100 Li