0
我想在標籤中打印n_clusters_
變量,但它不會更新。 n_clusters_
的計算在另一個類中。但我已經將它設置爲全局變量。這是代碼:在Python中打印變量值Tkinter標籤
class nCluster():
def __init__(self):
label = Label(LabelHasil, text="Jumlah cluster yang ditemukan : ")
label.pack(side=LEFT, padx=5, pady=5)
def n_cluster(self):
cluster_label = Label(LabelHasil, textvariable=n_clusters_)
cluster_label.pack(side=LEFT, padx=5, pady=5)
show_n_cluster = nCluster()
這是n_clusters_
計算類:我需要打印n_clusters_
變量,只要它的更新
class Proses:
def __init__(self):
button = Button(window, text="Proses", command=lambda: stdbscan(self), width=10)
button.pack()
def stdbscan(self):
...
global n_clusters_
n_clusters_ = len(set(labels)) - (1 if -1 in labels else 0)
show_proses = Proses()
。可能嗎?