Constant file_read

← Back to Module fileio



Module fileio → file_read

Description

File mode: Read. Allow input operations on the file

const file_read = 0x08


Usage Example

import fileio
 
f = file("data.txt", file_read)
line = f.readln()
f.close()