Where does my output go?

Michael Abbott michael at rcp.co.uk
Wed Sep 5 10:27:45 EDT 2001


So, I write a small bit of Python (one line):

write.py
--------
    	print 'hello'
--------

I then run it from the command line:


    	C:\TEMP>ver
    	
    	Windows NT Version 4.0
    	
    	C:\TEMP>write
    	Hello
    	
    	C:\TEMP>write >write.txt
    	
    	C:\TEMP>dir write.txt
    	 Volume in drive C is SKYLARK
    	 Volume Serial Number is 2801-8D16
    	
    	 Directory of C:\TEMP
    	
    	05/09/01  15:27                      0 write.txt
    	               1 File(s)              0 bytes
    	                          1,080,729,088 bytes free
    	
    	C:\TEMP>

Where did my output go?  This is most perplexing!



More information about the Python-list mailing list