Câu hỏi của Cuong

Sửa lỗi này thế nào ạ! (NameError: name 'fl' is not defined)

from tkinter import Frame, Tk, BOTH, Text, Menu, END from tkinter.filedialog import Open class Example(Frame): def __init__(self, parent): Frame.__init__(self, parent) self.parent = parent self.initUI() def initUI(self): self.parent.title("File dialog") ...

Cuong viết 16:34 ngày 01/10/2018 chỉnh sửa

Lỗi Python IndentationError: unexpected indent

# !/usr/bin/python # -*- coding: utf-8 -*- ' * Compute modified n-gram precision on blocks of text (Pn): 1. Compute the n-gram matches sentence by sentence 1.1. Count the maximum number of times a word occurs in any single reference translation 1.2. Clip the total count of each candidate word ...

Cuong viết 15:50 ngày 01/10/2018 chỉnh sửa
1