显示AttributeError: 'NoneType' object has no attribute 'get' 怎么解决呢?
from tkinter import *root=Tk()
label1=Label(root,text='凯撒密码').grid(row=0,column=1)
label2=Label(root,text='明文:').grid(row=2,column=1)
txt1=Text(root,width=20,height=2).grid(row=2,column=2)
label3=Label(root,text='密文:').grid(row=3,column=1)
txt2=Text(root,width=20,height=2).grid(row=3,column=2)
label4=Label(root,text='密钥:').grid(row=4,column=1)
txt3=Text(root,width=20,height=2).grid(row=4,column=2)
def decode():
s=txt2.get("1.0",end)
p=Int(txt3.get("1.0",end))
for q in s:
if 'a'<=q<='z':
#print(chr(ord(q)-p),end='')
txt1.insert(chr(ord(q)-p))
elif 'A'<=q<='z':
#print(chr(ord(q)-p),end='')
txt1.insert(chr(ord(q)-p))
else:
#print(q,end='')
txt1.insert(q)
不要这样写label2=Label(root,text='明文:').grid(row=2,column=1)因为grid方法返回值为None,这样label2的值就是None而不是Label的实例。把他们拆分开:label2=Label(root,text='明文:')
label2.grid(row=2,column=1)其他地方同理。
页:
[1]