Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # coding=utf-8
- s = raw_input("Podaj nazwę pliku do wyświetlenia: ")
- plik = file(s, "rb")
- ekran = ''
- while True:
- b = plik.read(1)
- if not b: break
- ekran += b
- plik.close()
- print ekran
Advertisement
Add Comment
Please, Sign In to add comment