![]() |
Beginning with Python - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Development (https://www.linuxliteos.com/forums/forumdisplay.php?fid=7) +--- Forum: Coding (https://www.linuxliteos.com/forums/forumdisplay.php?fid=33) +--- Thread: Beginning with Python (/showthread.php?tid=1037) |
Re: Beginning with Python - audiot3k - 12-30-2014 For those of you that have light development education check out this site for python learning. http://learnpythonthehardway.org/book/ Re: Beginning with Python - avj - 02-16-2015 This is the website I have been using to get started with Python, it is very hands on, and you don't have to download anything to get started. http://cscircles.cemc.uwaterloo.ca/ Re: Beginning with Python - bitsnpcs - 02-16-2015 Thank You avj. ![]() Re: Beginning with Python - avj - 02-16-2015 No problem. ![]() Re: Beginning with Python - Hans - 03-22-2015 Hi All, I've found this course on YT and I'm following it. So far, I think it's the most comprehensive python set of tutorials I've watched. https://www.youtube.com/playlist?list=PL0845FEB57E5894C2 Re: Beginning with Python - bitsnpcs - 01-27-2017 Thanks Hans ![]() Re: Beginning with Python - bitsnpcs - 02-11-2017 Is the included Python in LL suitable full for learning with IDE, or is it for functionality in LL, and I need to download it ? I am looking for newbie suitable recommendations of an IDE for Python, on Linux Lite, it will be - 1/ without too many panes. 2/ no auto complete, or it can be turned off. Indent is okay if it's not error prone. 3/ not white pane background, or has function to change this. 4/ can load projects to test within/internally, and provide error jump to code line, or log of project, or produce errors gui. I am also looking for recommendation of nice gui creator for use with the above. Re: Beginning with Python - torreydale - 02-12-2017 I use Geany and Gedit. I'd probably use Gedit exclusively because I like the Cobalt theme and I don't feel overwhelmed with features, but Gedit doesn't have column select. Geany and Gedit are both available via the repository (ie. Install/Remove Software). Re: Beginning with Python - bitsnpcs - 02-12-2017 Thank you torreydale, ![]() Re: Beginning with Python - torreydale - 02-12-2017 You don't need to download Python, by the way. It is already installed with Linux Lite and most Unix based operating systems by default, including Mac. All you have to do in Linux Lite is open a terminal and type in the word "python," and you'll be in the Python interpreter. To run a python program, you type in python and the filename, eg. python test.py. You have to be sure you either include the full directory path of the file or that you're running the command from the directory where that file resides. |