Márton Gellén
@Pelikan760
A little USD to EURO converter app made by me, with PyQt5. Any idea how to make it better? Maybe to fetch real life data from an API?
Python
A fun little project done in 5 mins.
I hope you enjoy this as much as I did doing it!
Python
Works fine with Visual Studio, but not with repl.it. Any idea how to resolve this issue?
Python (with Turtle)
Muffinlavania Ive had the same problem, that many turtle commands do not work in repl. I think that repl does not have EVERY turtle command like .title() and .shapesize(). Ive tried making pong like this in repl and it didn't work, so i wouldn't use it in repl..3 years ago
Zeune So, repl.it uses an open source technology called Skulpt to run Python code in a browser.
http://skulpt.org/
It seems repl.it communicates with Skupt through an API. I found the Turtle API documentation here:
http://www.pythononline.ch/pyonline/progs/doc/skulptturtle.pdf
If you look through the API documentation you will see that the turtle.shape method is included, but some of the other sizing methods like turtle.resizemode & turtle.shapesize are not included in the documentation. This is w3 years ago
DynamicSquid Visual Studio helps out a bit if there's a minor problem. Instead of wn.title(), I think turtle.title() should work3 years ago
One of my first codes in python. I wanted to learn coding for a long time, so I guess this summer I'll have time.
Python