你一定在想:What?为什么要写,Pycharm 不香吗
但这可是自己写出来的,用 pyinstaller 打包后可以成为自己的一款软件!
已有 3 人购买 本主题需向作者支付 2 鱼币 才能浏览 购买主题
wow
liuhongrun2022 发表于 2023-3-19 08:20但这可是自己写出来的,用 pyinstaller 打包后可以成为自己的一款软件!
wow
成功运行了吗 歌者文明清理员 发表于 2023-3-19 08:21
成功运行了吗
21行
text = Text(root, width=100, height=20, font=('Consolas', 15)
这行少写了一个右括号
应写为:
text = Text(root, width=100, height=20, font=('Consolas', 15)) 歌者文明清理员 发表于 2023-3-19 08:21
成功运行了吗
报错
File "C:\Users\L\Desktop\1.py", line 6, in runp
result.insert(0.0, out)
File "C:\Users\L\AppData\Local\Programs\Python\Python310-32\lib\tkinter\__init__.py", line 3772, in insert
self.tk.call((self._w, 'insert', index, chars) + args)
_tkinter.TclError: wrong # args: should be ".!text2 insert index chars ?tagList chars tagList ...?" liuhongrun2022 发表于 2023-3-19 09:03
报错
你输入的代码是啥,百度说参数得是字符串,难道返回了None? 歌者文明清理员 发表于 2023-3-19 09:14
你输入的代码是啥,百度说参数得是字符串,难道返回了None?
print('hello,world') liuhongrun2022 发表于 2023-3-19 09:39
正在内测中 liuhongrun2022 发表于 2023-3-19 09:39
bug 修复完毕 歌者文明清理员 发表于 2023-3-19 10:58
bug 修复完毕
@liuhongrun2022 现在好了吗 歌者文明清理员 发表于 2023-3-19 12:55
@liuhongrun2022 现在好了吗
Traceback (most recent call last):
File "C:\Users\L\AppData\Local\Programs\Python\Python310-32\lib\tkinter\__init__.py", line 1921, in __call__
return self.func(*args)
File "c:\Users\L\Desktop\1 - 副本 - 副本.py", line 8, in runp
with open(name, 'w', encoding='utf-8') as f:
OSError: Invalid argument: '2023-03-19 13:12:06.273680.py' liuhongrun2022 发表于 2023-3-19 13:14
现在好了,就是不支持 print/input 中文 歌者文明清理员 发表于 2023-3-19 14:51
现在好了,就是不支持 print/input 中文
{:10_327:} 代码:
x = input("hello")
print(x)
报错:
hello:Traceback (most recent call last):
File "Untitled.py", line 1, in <module>
x = input("hello")
EOFError: EOF when reading a line
页:
[1]