【发布时间】:2017-04-16 14:09:37
【问题描述】:
尝试从 Python 访问外部文本文件时,我在尝试简单地查看文件内容和尝试添加到文件时遇到了几个问题。所涉及的程序部分采用用户名并在该用户名下创建一个文本文件(如果该用户名尚不存在)。在使用Create()函数时,遇到如下TypeError:
Exception in Tkinter callback
Traceback (most recent call last):
File "D:\Python 3.3.2\A Level Computer Science\stackoverflowsolution.py", line 48, in View
with open(userfile, 'r') as u:
FileNotFoundError: [Errno 2] No such file or directory: 'name.txt'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "D:\Python 3.3.2\Python files\lib\tkinter\__init__.py", line 1475, in __call__
return self.func(*args)
File "D:\Python 3.3.2\A Level Computer Science\stackoverflowsolution.py", line 91, in Add
u.write(addText.get())
TypeError: get() missing 1 required positional argument: 'index1'
这是遇到错误的代码:
from tkinter import *
import os
def Login():
global nameEL
global rootA
rootA = Tk()
rootA.title('Login')
intruction = Label(rootA, text='Please Login\n')
intruction.grid(sticky=E)
nameL = Label(rootA, text='Username: ')
nameL.grid(row=1, sticky=W)
nameEL = Entry(rootA)
nameEL.grid(row=1, column=1)
loginB = Button(rootA, text='Login', command=LoggedIn)
loginB.grid(columnspan=2, sticky=W)
rootA.mainloop()
def LoggedIn():
global userfile
roots1 = Tk()
roots1.title('Logged in successfully')
roots1.geometry('300x300')
userfile = nameEL.get() + '.txt'
View1 = Button(roots1, text='View', command=View)
View1.grid(columnspan=10, sticky=W)
View1.pack(fill = 'x')
Create1 = Button(roots1, text='Create', command=Create)
Create1.grid(columnspan=10, sticky=W)
Create1.pack(fill = 'x')
def View():
global userfile
try:
with open(userfile, 'r') as u:
print(u.read())
except FileNotFoundError:
r = Tk()
r.title('View')
r.geometry('300x50')
rlbl = Label(r, text='\n[!] Theres nothing to see here [!]')
rlbl.pack()
r.mainloop()
LoggedIn()
except ValueError:
r = Tk()
r.title('View')
r.geometry('300x50')
rlbl.pack()
r.mainloop()
LoggedIn()
def Create():
global addText
global rootC
rootC = Tk()
rootC.title('Lets add some information')
instruction = Label(rootC, text='Please enter the information you would like to add\n')
instruction.grid(row=0, column=0, sticky=W)
newText = Label(rootC, text='info: ')
newText.grid(row=1, column=0)
addText = Text(rootC)
addText.grid(row=2, column=0)
addButton = Button(rootC, text='Add', command=Add)
addButton.grid(columnspan=2, sticky=W)
addButton.grid(row=3, column=0)
def Add():
global userfile
with open(userfile, 'a') as u:
u.write(addText.get())
u.write('\n')
rootC.destroy()
LoggedIn()
Login()
【问题讨论】:
-
为什么你认为你可以从一个仅附加打开的文件中读取?
-
NameError: name 'Login' is not defined从最后一行开始并不是一个好的开始。然后是来自 `userfile = open(nameEL.get() + '.txt', 'a')` 行的NameError: name 'nameEL' is not defined。您的示例代码不可执行。
标签: python python-3.x tkinter python-3.3