我有一个简单的函数调用,如下所示:
fname = 'hello.txt'reaDWrite('xx'+fname,dataList)
我面临的问题是,当我在函数定义中打印文件名参数值时,我得到hello.txt而不是xxHello.txt – 这是一个奇怪的事情,当我从commadline做同样的事情时我没想到,对于一个示例函数,它工作正常.
我想知道我在那里失踪了什么.
这是代码:
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()
– 调用函数的主代码:
filename = 'put.txt'strList = ['hello','how','are','you']reaDWrite(('xx'+filename),strList);
– fn def print’arg file =’中的第二行,filename打印hello.txt而不是xxHello.txt
这是我的困惑,为什么它表现得很好,或者我做错了什么.
def reaDWrite(filename,filename
发生的事情是第二行选择名为filename的全局变量而不是名为filename的函数参数.
总结以上是内存溢出为你收集整理的Python函数混乱全部内容,希望文章能够帮你解决Python函数混乱所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)