You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
223 B
13 lines
223 B
10 years ago
|
# test reading a given number of characters
|
||
|
|
||
|
def do(mode):
|
||
|
f = open('unicode/data/utf-8_2.txt', mode)
|
||
|
print(f.read(1))
|
||
|
print(f.read(1))
|
||
|
print(f.read(2))
|
||
|
print(f.read(4))
|
||
|
f.close()
|
||
|
|
||
|
do('rb')
|
||
|
do('rt')
|