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
  1. The print() function, in a loop. Nothing surprising here.