weixin_57733352 2021-06-06 08:50 采纳率: 100%
浏览 32
已采纳

一个python2 的报错处理

# -*- coding: gb2312 -*-
import Tkinter as tk
import tkFileDialog
import os
 
window = tk.Tk()
window.title('asdas')  # 标题
window.geometry('500x500')  # 窗口尺寸
 
file_path = ''
 
file_text = ''
 
text1 = tk.Text(window, width=50, height=10, bg='orange', font=('Arial', 12))
text1.pack()
 
 
def open_file():
   
    global file_path
    global file_text
    file_path = tkFileDialog.askopenfilename(title="ok", initialdir=(os.path.expanduser('D:/')))
    print('ok:', file_path)
    if file_path is not None:
        with open(file=file_path, mode='r+',encoding='utf-8') as (file):
            file_text = file.read()
        text1.insert('insert', file_text)
 
 
def save_file():
    global file_path
    global file_text
    file_path = filedialog.asksaveasfilename(title='oo')
    print('ok:', file_path)
    file_text = text1.get('1.0', tk.END)
    if file_path is not None:
        with open(file=file_path, mode='a+', encoding='utf-8') as file:
            file.write(file_text)
        text1.delete('1.0', tk.END)
        dialog.Dialog(None, {'title': 'File Modified', 'text': '保存完成', 'bitmap': 'warning', 'default': 0,'strings': ('OK', 'Cancle')})
        print('ok')
 
 
bt1 = tk.Button(window, text='open', width=15, height=2, command=open_file)
bt1.pack()
bt2 = tk.Button(window, text='save', width=15, height=2, command=save_file)
bt2.pack()
 
window.mainloop()  # 显示

这是用python2.7写的,如何能够实现其功能也就是打开和保存文件,直接运行他会给一个错误

TypeError: Required argument 'name' (pos 1) not found

如何处理

必须要在python2.7 这个版本中实现

  • 写回答

1条回答 默认 最新

  • 关注

    你在开头加上

    # coding=utf-8

    然后再运行

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效