diff --git a/files.html b/files.html index 018b87c..203fe46 100644 --- a/files.html +++ b/files.html @@ -464,16 +464,16 @@ AttributeError: 'GzipFile' object has no attribute '__exit__'
>>> for i in range(3):
-... print('PapayaWhip') ①
+... print('PapayaWhip') ①
PapayaWhip
PapayaWhip
PapayaWhip
>>> import sys
>>> for i in range(3):
-... sys.stdout.write('is the') ②
+... sys.stdout.write('is the') ②
is theis theis the
>>> for i in range(3):
-... sys.stderr.write('new black') ③
+... sys.stderr.write('new black') ③
new blacknew blacknew black
print() function, in a loop. Nothing surprising here.