Python Forum
Thread Rating:
  • 5 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tutorial Requests
#41
That would be fantastic. Thanks for volunteering!
Reply
#42
I saw something online about how to have multiple python development environments so you could run python2.7, 3.0, 3.4 etc on the same computer. I have been using 2.7 for pygame but just found out it can now use 3.7. So as well as this, something about the differences between 2.7 and 3.x would also be nice.
Reply
#43
see: https://wiki.python.org/moin/Python2orPython3
Reply
#44
i added for and while loops. I didnt realize we didnt have one for that. I linked someone to here but they encourage the use of range(len(sequence)). Otherwise that would be sufficient.
Recommended Tutorials:
Reply
#45
I have created Voice/Speech command calculator using Speech Recognition and PyAudio
Like if a user says "nine multiplied by nine" The program will give you the result in output. Here is the full tutorial.
Voice Command Calculator in Python
Reply
#46
Python String Methods list : Python has a set of built-in string methods.
https://www.tutorialandexample.com/pytho...g-methods/
Reply
#47
(Sep-14-2019, 10:09 AM)Maheshsharma Wrote: Python String Methods list : Python has a set of built-in string methods.
https://www.tutorialandexample.com/pytho...g-methods/

You can get a list and description, as well as detailed info on methods in Python by calling the built in help function. You can do this for any object, not just strings.

help(str)
Or a specific method by doing
help(str.find)
Recommended Tutorials:
Reply
#48
If you learn basic tutorial of Python i would recommend https://appdividend.com/category/python-tutorials/
Reply
#49
tqdm tutorials for CLI Progressbar
Reply
#50
(Nov-23-2019, 09:18 AM)Evil_Patrick Wrote: tqdm tutorials for CLI Progressbar

Anything in particular? Their homepage seems pretty detailed to me: https://tqdm.github.io/
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020