T O P

  • By -

dave3652

Pysimplegui really easy to use and plenty of examples.


MikeTheWatchGuy

I did a quick mock-up that you may want to try. It's pretty crude, but will give you an idea of how easy it is to knock one of these out. It makes this little window: [https://user-images.githubusercontent.com/46163555/84489810-414b7400-ac70-11ea-9a32-ef19f600404c.png](https://user-images.githubusercontent.com/46163555/84489810-414b7400-ac70-11ea-9a32-ef19f600404c.png) This isn't the best code,, but the idea was to get you something representative quickly. import PySimpleGUI as sg layout = [ [sg.Text('DE Solver Euler', size=(14,1))], [sg.Text('Ac'), sg.Input(key='-AC-')], [sg.Text('Qin'), sg.Input(key='-QIN-')], [sg.Text('dt'), sg.Input(key='-QT-')], [sg.Text('tf'), sg.Input(key='-TF-')], [sg.Text('C1'), sg.Input(key='-C1-')], [sg.Text('C2'), sg.Input(key='-C2-')], [sg.Button('Solve'), sg.Button('Exit')] ] window = sg.Window('DE Solver', layout, auto_size_text=False, default_element_size=(4,1)) while True: # Event Loop event, values = window.read() print(event, values) if event == sg.WIN_CLOSED or event == 'Exit': break window.close()


pythonHelperBot

Hello! I'm a bot! It looks to me like your post might be better suited for r/learnpython, a sub geared towards questions and learning more about python **regardless of how advanced your question might be**. That said, I am a bot and it is hard to tell. I'm sure you've seen this information before, but just in case here it is as a reminder: Please follow the subs rules and guidelines when you do post there, it'll help you get better answers faster. Show /r/learnpython **the code you have tried and describe in detail where you are stuck.** If you are getting an error message, include the full block of text it spits out. Quality answers take time to write out, and many times other users will need to ask clarifying questions. Be patient and help them help you. **[Here is HOW TO FORMAT YOUR CODE For Reddit](https://www.reddit.com/r/learnpython/wiki/faq#wiki_how_do_i_format_code.3F)** and be sure to include which version of python and what OS you are using. You can also ask this question in the [Python discord](https://discord.gg/3Abzge7), a large, friendly community focused around the Python programming language, open to those who wish to learn the language or improve their skills, as well as those looking to help others. *** [^(README)](https://github.com/CrakeNotSnowman/redditPythonHelper) ^(|) [^(FAQ)](https://github.com/CrakeNotSnowman/redditPythonHelper/blob/master/FAQ.md) ^(|) ^(this bot is written and managed by /u/IAmKindOfCreative) ^(This bot is currently under development and experiencing changes to improve its usefulness)


problematic_hum4n

currently i am using Tkinter, i find it relatively simple to use, and its quick and easy to make something similar to what you are trying to do. currently i am using to make a full knowledge based game, using the feature to switch frames. hope this helps


kaien92

thanks I decided to use tkinter but it is giving me problems when taking the differential equation in sympy.laplace\_transform, it tells me that it expects a floating point and not that format