Pilih bahasa pemrograman
Java
Python
C++
PHP
Java Script
Pascal
HTML
bahasa yang dipilih:
Python
Hello World
Logika If-Else
IF
IF-Else
IF-Else Bertingkat
Perulangan (loop)
For
While
For each
Perulangan bertingkat
Array
Deklarasi Array
Operasi Array
List
Deklarasi List
Operasi List
Operasi Aritmatika
File IO
File IO Dasar
Menulis File
Membaca File
File IO Read
Input
from os.path import exists print "Type the filename :" file= raw_input("> ") if exists(file): txt_again = open(file,'r') print txt_again.read() else: print "no such file" print(text)
Output
Tips
PS D:\mypython> python file.py Type the filename : > Creativecub.txt Hi Please Understand the code Happy coding [Creativecub.txt is present in D:\mypython ]