In interactive console session mode Python 3.12 (after entering commands line by line),
the code with the Polish letter "ł" does not open any window.
But just remove the letter 'ł' and everything is OK.
The problem is only in the console.
How to get around this?
==== PL ====
W trybie interaktywnej sesji konsoli Python 3.12 (po wpisaniu poleceń linia po linii)
powyższy kod z polską literą 'ł' w tytule okna nie wykonuje się,
ale wystarczy usunąć literę 'ł' i wszystko jest OK.
Po umieszczeniu kodu w pliku 'test.py' i uruchomieniu w CMD: python trest.py też jest Ok
Jak to obejść?
the code with the Polish letter "ł" does not open any window.
But just remove the letter 'ł' and everything is OK.
The problem is only in the console.
How to get around this?
# -*- coding: utf-8 -*- import tkinter as tk root = tk.Tk() root.title("title with ł character") label = tk.Label(root, text="------===== long text, to see ... full title =====---------") label.pack() root.mainloop()After placing the code in the 'test.py' file and running it in CMD: python trest.py it is OK
==== PL ====
W trybie interaktywnej sesji konsoli Python 3.12 (po wpisaniu poleceń linia po linii)
powyższy kod z polską literą 'ł' w tytule okna nie wykonuje się,
ale wystarczy usunąć literę 'ł' i wszystko jest OK.
Po umieszczeniu kodu w pliku 'test.py' i uruchomieniu w CMD: python trest.py też jest Ok
Jak to obejść?
buran write Oct-26-2023, 01:00 PM:
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.
Please, use proper tags when post code, traceback, output, etc. This time I have added tags for you.
See BBcode help for more info.