I am learning Python. I have a function readwrite(filename, list). filename is of type string. list is a list containing strings to be wtitten in the file.
I have a simple function call like this:
fname = 'hello.txt'
readwrite('xx'+fname, datalist)
I am facing problem that when i print the filename argument value inside the function definition, i get hello.txt rather than xxHello.txt - a strange thing which i didnt expect
when i do same from commadline, for a sample function, it works fine.
I wonder what I am missing over there.
Here s the code:
def readwrite(fileName, list):
print 'arg file=',filename
curdir = os.getcwd();
fullpath = os.path.join(curdir, filename);
print('full path calculated as: '+fullpath);
fileExist = os.path.exists(fullpath);
if(fileExist):
print 'file exists and opening in \'arw\'mode'
fiel = open(fileName, 'arw') # valid only if exists
else:
print "file doesnt exist; opening in \'w\'mode"
fiel = open(fileName, 'w') # if it doesnt exist, we cant open it for reading as nothing to read.
for line in list:
fiel.write('\n'+line)
print 'position of new pointer = ', fiel.tell()
-- main code calling the function:
filename = 'put.txt'
strList = ['hello', 'how', 'are', 'you']
readwrite(('xx'+filename), strList);
-- second line in fn def print 'arg file=',filename prints hello.txt rather than xxHello.txt
This is my confusion as why is it behaving starngely or am i doing smthing wrong.
listas a variable name. By doing so you are overwriting the reference to the built in classlist. – rplnt Oct 10 '11 at 10:27