Python Forum
Tutorial Requests - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: Tutorials (https://python-forum.io/forum-4.html)
+---- Forum: Tutorial Requests and Submissions (https://python-forum.io/forum-21.html)
+---- Thread: Tutorial Requests (/thread-771.html)

Pages: 1 2 3 4 5 6 7


RE: Tutorial Requests - nilamo - Apr-07-2017

IDLE isn't recommended for anyone for any reason. It's just bad.


RE: Tutorial Requests - sparkz_alot - Apr-07-2017

I did notice on the default install (Windows) there is a program called "PythonWin" which adds a little umph to IDLE.  Not sure if it's available on Linux.


RE: Tutorial Requests - zivoni - Apr-07-2017

There are IdleX extensions, they try to remove some of worst idle's oddities and make it almost usable.


RE: Tutorial Requests - nilamo - Apr-07-2017

I think idle would be best used as a demo app for how a decently sized project is organized as well as proper code style. But as an actual ide I feel that it fails.


RE: Tutorial Requests - nilamo - May-09-2017

https://python-forum.io/Thread-Basic-Python-3-6-and-pip-installation-under-Windows

What if you're not an admin on the computer, and can't install to the drive's root?
Should there be a different tutorial for people that want to install onto a usb flash drive, so they can use any computer they want without needing to install anything (perhaps a library computer, or at a school's computer lab, for example)?


RE: Tutorial Requests - snippsat - May-09-2017

Quote:What if you're not an admin on the computer, and can't install to the drive's root?

I can take more about that in thread,or maybe a new thread.
Like Anaconda(MiniConda),WinPython or in cloud PythonAnywhere,Cloud9,
REPL(editor) online repl.it


RE: Tutorial Requests - wavic - May-26-2017

Well, it look like everyone is talking about those new features in Python - the function annotations. And in general the annotations. I'd like a tutorial please. I am searching for good one but still nothing. I barely understand the conception but that's all. And I think this will bring a lot of good changes in how we use Python. I wan't to learn more.

What is it, the syntax, how to use it, and how it works


RE: Tutorial Requests - sparkz_alot - Jul-08-2017

Maybe it's so basic as to be so overlooked, but having searched the world over using the the world wide web and every Python book in my arsenal to no avail, I would like to see a tutorial (with oodles and oodles of comments) on how to properly create a CLI menu with sub-menus. My usual way of using functions and an abundance of "if/elif/else" statements and a call to a previous function seems to be inefficient and cumbersome. I'm not looking for anything fancy (for example, using curses/ncurses), just a proper way of doing it.


RE: Tutorial Requests - ichabod801 - Jul-08-2017

I could do a tutorial on menu systems. I also use cmd a lot, so maybe I could combine it with a tutorial about that. It would be good for beginners, to show them how to make interfaces before they are ready for GUIs.


RE: Tutorial Requests - sparkz_alot - Jul-08-2017

(Jul-08-2017, 02:19 PM)ichabod801 Wrote: It would be good for beginners...

and me, of course :-D