Posts: 530
Threads: 26
Joined: Feb 2015
Reputation:
0
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/
“I have not failed. I’ve just found 10,000 ways that won’t work.” - Thomas Edison
Posts: 530
Threads: 26
Joined: Feb 2015
Reputation:
0
No problem.
“I have not failed. I’ve just found 10,000 ways that won’t work.” - Thomas Edison
Posts: 37
Threads: 3
Joined: Feb 2014
Reputation:
0
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=PL...B57E5894C2
"...But don't forget the songs that made you cry
And the songs that saved your life
Yes, you're older now
And you're a clever swine
But they were the only ones who ever stood by you"
Posts: 3,234
Threads: 125
Joined: Jul 2014
Reputation:
0
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.
Posts: 1,602
Threads: 86
Joined: Jun 2015
Reputation:
0
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).
Want to thank me? Click my [Thank] link.
Posts: 1,602
Threads: 86
Joined: Jun 2015
Reputation:
0
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.
Want to thank me? Click my [Thank] link.
(This post was last modified: 02-12-2017, 05:04 PM by
torreydale.)