Posts by Lehetex • 81 points
5 posts
-
1
votes1
answer320
viewsQ: How do Tkinter wait for user interaction during the script?
I am learning Python on my own and now I took it to learn GUI in Tkinter. If anyone can help me, I’m having trouble getting the program to display a greeting and then offer options on different…
-
1
votes0
answers38
viewsQ: How does Pickle behave with stored variables? (Python)
I’m learning Python on my own and now I’m practicing the Pickle module. I managed to make it work normally, but it occurred to me a question about what happens when I store a variable in the pickle…
-
1
votes1
answer1279
viewsQ: Referencing Variables in Python Imported Functions
I am learning Python on my own and in many videos and subjects programmers advise and emphasize the importance of "clean and organized codes". So I’m trying to create classes and functions in…
-
2
votes2
answers250
viewsQ: Referencing Python Variables
I’m learning programming on my own and no matter how I look online, I can’t understand exactly why the following reference doesn’t work as I imagine it would work. Let’s say I created a function to…
-
1
votes1
answer196
viewsQ: Qpython 3 if/Elif/Else
Why doesn’t Mey Qpython Android accept a simple if/Elif/Else condition? I’m using Python 3. x = input('Select an option... ') if x == 1: print('xxxx') elif x == 2: print('yyyy') elif x == 3:…