What's new

Closed [3] python basics: reading out a line from file

Status
Not open for further replies.

Vladimir420

Addict
Established
Joined
Dec 10, 2018
Posts
86
Reaction
33
Points
103
Ito madali lang to pag alam nyo na mag open ng file. Skip ko na yung ibang explanation kasi nasa attribute na yung meaning mismo.

Code:
f = open('file.txt')
f.write('Text as string')

#para ma read yung Argument #1  sa f.write, ito gagamitin natin.

f.readline() #output nito ay string.
#or
line_text = f.readline()
print(line_text)
#easy diba.
Maya na natin i-implement dun sa guessing game natin. Pero dahil madali lang sya, explore nyo na. :D
Next topic: implementing the reading of a text ro the game
 
Status
Not open for further replies.
Back
Top