Posts

Showing posts with the label anaconda

How can i give input bengali or Unicode languages in tkinter python

Image
Clash Royale CLAN TAG #URR8PPP How can i give input bengali or Unicode languages in tkinter python I am beginner in GUI platform in python.I tr to Create a text box , but when i input other language except English specially Bengali it shows ??. Can anyone help me out . I attach my code and sample output try: from tkinter import * import sys except ImportError: from tkinter import * import sys class App(object): def __init__(self,parent): self.frame1 = Frame(parent, highlightbackground="green", highlightcolor="#666D00", highlightthickness=7, width=700, height=700, bd= 10) self.frame1.pack() self.frame1.pack_propagate(False) parent.geometry("700x700") parent.resizable(0, 0) self.frame1.configure(background='white') self.text1 = Label(text="আপনার অনুচ্ছেদ পূরণ করুন (বাংলা):",font=("Lohit Bengali", 16)) self.text1.place(x=110, y=100) self.T ...