Peter Hansen wrote: > > What's an "anonymous file"? The term means nothing to me... The file object created in: ... text = open(filename, 'r').read() ... has no name, and cannot be accessed elsewhere. In ...f = open(... the situation is different. It's like in two phrases: 'I was told that...' and 'Peter told me that...". Sergey