鱼C论坛

 找回密码
 立即注册
查看: 1839|回复: 2

[已解决]为什么我这个打印的是None,版本是3.8.5

[复制链接]
发表于 2020-8-19 00:54:42 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
from tkinter import *

root = Tk()

Label(root, text="作品:").grid(row=0, column=0)
Label(root, text="作者:").grid(row=1, column=0)

e1 = Entry(root)
e2 = Entry(root)
e1.grid(row=0, column=1, padx=10, pady=5)
e2.grid(row=1, column=1, padx=10, pady=5)

def show():
    print("作品:《%s》" % e1.grid())
    print("作者: %s" % e2.grid())

Button(root, text="获取信息",width=10,command=show)\
             .grid(row=5, column=0, sticky=W, padx=10, pady=5)

Button(root, text="退出",width=10,command=root.quit)\
             .grid(row=5, column=1, sticky=E, padx=10, pady=5)





mainloop()
这是程序运行之后:
作品:《None》
作者: None

最佳答案
2020-8-19 06:57:29
是 get() 不是 grid() 。这样试试:
from tkinter import *

root = Tk()

Label(root, text="作品:").grid(row=0, column=0)
Label(root, text="作者:").grid(row=1, column=0)

e1 = Entry(root)
e2 = Entry(root)
e1.grid(row=0, column=1, padx=10, pady=5)
e2.grid(row=1, column=1, padx=10, pady=5)

def show():
    print("作品:《%s》" % e1.get())
    print("作者: %s" % e2.get())

Button(root, text="获取信息",width=10,command=show)\
             .grid(row=5, column=0, sticky=W, padx=10, pady=5)

Button(root, text="退出",width=10,command=root.quit)\
             .grid(row=5, column=1, sticky=E, padx=10, pady=5)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-19 06:57:29 | 显示全部楼层    本楼为最佳答案   
是 get() 不是 grid() 。这样试试:
from tkinter import *

root = Tk()

Label(root, text="作品:").grid(row=0, column=0)
Label(root, text="作者:").grid(row=1, column=0)

e1 = Entry(root)
e2 = Entry(root)
e1.grid(row=0, column=1, padx=10, pady=5)
e2.grid(row=1, column=1, padx=10, pady=5)

def show():
    print("作品:《%s》" % e1.get())
    print("作者: %s" % e2.get())

Button(root, text="获取信息",width=10,command=show)\
             .grid(row=5, column=0, sticky=W, padx=10, pady=5)

Button(root, text="退出",width=10,command=root.quit)\
             .grid(row=5, column=1, sticky=E, padx=10, pady=5)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2020-10-31 14:46:50 | 显示全部楼层
是这样的,你代码写错了,第15行和第16行的代码,把这两个grid改为get ,即可。我已经给你编写好了,也运行了,没有问题。
from tkinter import *

root = Tk()

Label(root, text="作品:").grid(row=0, column=0)
Label(root, text="作者:").grid(row=1, column=0)

e1 = Entry(root)
e2 = Entry(root)
e1.grid(row=0, column=1, padx=10, pady=5)
e2.grid(row=1, column=1, padx=10, pady=5)

def show():
    print("作品:《%s》" % e1.get())
    print("作者: %s" % e2.get())

Button(root, text="获取信息",width=10,command=show)\
             .grid(row=5, column=0, sticky=W, padx=10, pady=5)

Button(root, text="退出",width=10,command=root.quit)\
             .grid(row=5, column=1, sticky=E, padx=10, pady=5)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 00:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表