Which of the following statements is true?,
Classified in Computers
Written at on English with a size of 10.36 KB.
infile.Read(1)
'T'
>>>
infile.Read(5)
'he 3 '
>>>
infile.Readline()
'lines in this file end with the new line
character.\n'
>>>
infile.Read()
'\nThere is a blank line above this line.\n'
>>>
infile.Close()
outfile = open('test.Txt', 'w')
>>>
outfile.Write('T')
1
>>>
outfile.Write('his is the first line.')
22
>>>
outfile.Write(' Still the first line...\n')
25
>>>
outfile.Write('Now we are in the second line.\n')
31
>>>
outfile.Write('Non string value like '+str(5)+' must be converted first.\n')
49
>>>
outfile.Write('Non string value like {} must be converted first.\n'.Format(5))
49
>>> outfile.Close()
if temp > 86:
print('It is hot!')
print('Be sure to drink liquids.')
else:
print(... Continue reading "Which of the following statements is true?," »