Re: I want to lirn pithon but pithon doesn't want me to do so
There are commands for that, for example:
#convert string to int
st = "56"
st = int(st)
print(type(st), st)
#comvert to float st = float(st) print(type(st), st) #convert to string st = str(st) print(type(st), st)
For window creation you'll need a GUI library, the more common ones being wxPython, Pyglet, and Pygame. With those you can create windows and handle keyboard input, however some are more screen reader accessiblwe than othes out of the box, wxpython for example. I also have a simple pygame example [here], post 3.
-- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector