把这个Python代码转换成可视化的GUI?

2024-10-06 15:27:58 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个朋友做的python代码,因为我对python知之甚少。。 我想把它转换成一个图形用户界面,因为我们将把代码作为一个程序分发给初学者。在

不管怎样,代码是这样的:

import time, os, sys 
try: 
if len(sys.argv) < 2: 
    fn = raw_input("Enter the name of the file you want to edit: ") 
else: fn = sys.argv[1] 
f = open(fn) 
b = f.read() 
for i in b[:300]: 
    print hex(ord(i))[2:], 
f.close() 
line = str(0x15c)+'-'+str(0x15f) 
if len(sys.argv)<3: 
    hexcode = raw_input("3 bytes color hex number: ") 
else: hexcode = sys.argv[2] 
if not hexcode.startswith('0x'): 
    hexcode = '0x'+hexcode 
hexstr = '0x'
start = int(line.split('-')[0]) 
end = int(line.split('-')[1]) 
for i in b[start:end]: 
    hexstr+=hex(ord(i))[2:] 
ascii = '' 
for i in range(2,len(hexcode),2): 
    char = chr(int(hexcode[i:i+2],16)) 
    ascii+=char 
b = b[:start]+ascii+b[end:] 
for i in b[:300]: 
    print hex(ord(i))[2:], 
except Exception, x: 
print x 
time.sleep(3) 
finally: 
f = open(fn,'wb') 
f.write(b) 
f.close() 

现在我在一个教程上找到了这个,但不知道如何使用它: #简单的GU0I

^{pr2}$

有什么帮助吗? 谢谢!在

还有一件事,在这段代码中,在我输入名称或replacor hex之后,它会显示一个hex列表,我怎么能使它不显示呢?在

谢谢!在


Tags: 代码inforlenifsyslinestart
1条回答
网友
1楼 · 发布于 2024-10-06 15:27:58

因为这个程序很简单,你可以试试EasyGui(easygui.sourceforge.net/). 首先,添加import easygui as eg。这一行加载EasyGui模块。接下来,将fn = raw_input("Enter the name of the file you want to edit: ")替换为fn = eg.fileopenbox(title = 'HexReplace', msg = 'Browse to the file you wish to edit')。这将打开一个框以浏览到所需的文件。也将hexcode = raw_input("3 bytes color hex number: ")替换为hexcode = eg.enterbox(msg = '3 bytes color hex number', title = 'HexReplace')。这会弹出一个输入框。将print x替换为eg.msgbox(title = 'HexReplace', msg = x)。这将显示一个消息框,但有一个异常。title参数是窗口标题。要删除十六进制列表,请在导入和try块之间添加:null = open(os.devnull, 'W's); oldstdout = system.stdout; sys.stdout = null 这将使所有打印消息静音。在

相关问题 更多 >