Welcome to 96MB, please Login or Create an account to get full access to the forums.
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Python IDE

Offline zhuanyi Posted 08-16-2013, 11:36 PM -
Post: #1
Senior Member
357 Posts
Reputation: 5
Some people may like it but one thing I hate about Python when I am coding in it is it has to set the indent manually, and because the indenting controls the logic, you are screwed if it is not right.

So I am just wondering if there is any good IDE that will sort of take care of the issue semi-automatically? Obviously it won't be perfect since the program does not know what kind of logic I would like to use but it would nice if at least it tries to align things. Right now I am using Notepad++.
Back to top Find Quote
Offline concerto49 Posted 08-20-2013, 08:53 PM -
Post: #2
Junior Member
42 Posts
Reputation: 0
(08-16-2013, 11:36 PM)zhuanyi Wrote: Some people may like it but one thing I hate about Python when I am coding in it is it has to set the indent manually, and because the indenting controls the logic, you are screwed if it is not right.

So I am just wondering if there is any good IDE that will sort of take care of the issue semi-automatically? Obviously it won't be perfect since the program does not know what kind of logic I would like to use but it would nice if at least it tries to align things. Right now I am using Notepad++.

I've mostly only used IDLE as the IDE for Python. http://en.wikipedia.org/wiki/Python_IDE#Python here's a list.

High performance, fast network, affordable price VPS - Cloud Shards
Available in Texas, New York & Los Angeles
Back to top WWW Find Quote
Offline zhuanyi Posted 08-20-2013, 11:49 PM -
Post: #3
Senior Member
357 Posts
Reputation: 5
(08-20-2013, 08:53 PM)concerto49 Wrote:
(08-16-2013, 11:36 PM)zhuanyi Wrote: Some people may like it but one thing I hate about Python when I am coding in it is it has to set the indent manually, and because the indenting controls the logic, you are screwed if it is not right.

So I am just wondering if there is any good IDE that will sort of take care of the issue semi-automatically? Obviously it won't be perfect since the program does not know what kind of logic I would like to use but it would nice if at least it tries to align things. Right now I am using Notepad++.

I've mostly only used IDLE as the IDE for Python. http://en.wikipedia.org/wiki/Python_IDE#Python here's a list.

It looks a bit like a notepad + syntax highlighting for me:

http://en.wikipedia.org/wiki/File:Idle_gui.png

Does it have automatic (or somewhat) line alignments? That's what I hope to get the most Smile
Back to top Find Quote
Offline concerto49 Posted 08-23-2013, 12:35 AM -
Post: #4
Junior Member
42 Posts
Reputation: 0
(08-20-2013, 11:49 PM)zhuanyi Wrote:
(08-20-2013, 08:53 PM)concerto49 Wrote:
(08-16-2013, 11:36 PM)zhuanyi Wrote: Some people may like it but one thing I hate about Python when I am coding in it is it has to set the indent manually, and because the indenting controls the logic, you are screwed if it is not right.

So I am just wondering if there is any good IDE that will sort of take care of the issue semi-automatically? Obviously it won't be perfect since the program does not know what kind of logic I would like to use but it would nice if at least it tries to align things. Right now I am using Notepad++.

I've mostly only used IDLE as the IDE for Python. http://en.wikipedia.org/wiki/Python_IDE#Python here's a list.

It looks a bit like a notepad + syntax highlighting for me:

http://en.wikipedia.org/wiki/File:Idle_gui.png

Does it have automatic (or somewhat) line alignments? That's what I hope to get the most Smile

Not that I know of. Look at the list of other IDEs. IDLE is more for learning. That's what I used it for.

High performance, fast network, affordable price VPS - Cloud Shards
Available in Texas, New York & Los Angeles
Back to top WWW Find Quote
Offline zhuanyi Posted 08-23-2013, 12:39 AM -
Post: #5
Senior Member
357 Posts
Reputation: 5
(08-23-2013, 12:35 AM)concerto49 Wrote:
(08-20-2013, 11:49 PM)zhuanyi Wrote:
(08-20-2013, 08:53 PM)concerto49 Wrote:
(08-16-2013, 11:36 PM)zhuanyi Wrote: Some people may like it but one thing I hate about Python when I am coding in it is it has to set the indent manually, and because the indenting controls the logic, you are screwed if it is not right.

So I am just wondering if there is any good IDE that will sort of take care of the issue semi-automatically? Obviously it won't be perfect since the program does not know what kind of logic I would like to use but it would nice if at least it tries to align things. Right now I am using Notepad++.

I've mostly only used IDLE as the IDE for Python. http://en.wikipedia.org/wiki/Python_IDE#Python here's a list.

It looks a bit like a notepad + syntax highlighting for me:

http://en.wikipedia.org/wiki/File:Idle_gui.png

Does it have automatic (or somewhat) line alignments? That's what I hope to get the most Smile

Not that I know of. Look at the list of other IDEs. IDLE is more for learning. That's what I used it for.

K, I'll either try that or give a shot at Eclipse during the weekend...quite a few things on the go these days Smile
Back to top Find Quote
Offline concerto49 Posted 08-25-2013, 07:29 PM -
Post: #6
Junior Member
42 Posts
Reputation: 0
(08-23-2013, 12:39 AM)zhuanyi Wrote:
(08-23-2013, 12:35 AM)concerto49 Wrote:
(08-20-2013, 11:49 PM)zhuanyi Wrote:
(08-20-2013, 08:53 PM)concerto49 Wrote:
(08-16-2013, 11:36 PM)zhuanyi Wrote: Some people may like it but one thing I hate about Python when I am coding in it is it has to set the indent manually, and because the indenting controls the logic, you are screwed if it is not right.

So I am just wondering if there is any good IDE that will sort of take care of the issue semi-automatically? Obviously it won't be perfect since the program does not know what kind of logic I would like to use but it would nice if at least it tries to align things. Right now I am using Notepad++.

I've mostly only used IDLE as the IDE for Python. http://en.wikipedia.org/wiki/Python_IDE#Python here's a list.

It looks a bit like a notepad + syntax highlighting for me:

http://en.wikipedia.org/wiki/File:Idle_gui.png

Does it have automatic (or somewhat) line alignments? That's what I hope to get the most Smile

Not that I know of. Look at the list of other IDEs. IDLE is more for learning. That's what I used it for.

K, I'll either try that or give a shot at Eclipse during the weekend...quite a few things on the go these days Smile

Eclipse is nice. Never used it for Python though.

High performance, fast network, affordable price VPS - Cloud Shards
Available in Texas, New York & Los Angeles
Back to top WWW Find Quote
Offline tmn29a Posted 08-26-2013, 09:26 PM -
Post: #7
Resistance Leader
83 Posts
Reputation: 1
Emacs Tongue
Back to top Find Quote
Offline zhuanyi Posted 08-26-2013, 10:41 PM -
Post: #8
Senior Member
357 Posts
Reputation: 5
(08-26-2013, 09:26 PM)tmn29a Wrote: Emacs Tongue

LOL, I am sure there is no auto-indent there Smile

I have to say after all these years, it is still tough for me to use Linux as the primary OS for my home PCs, a lot of apps are simply not available there.
Back to top Find Quote
Offline tmn29a Posted 08-26-2013, 11:10 PM -
Post: #9
Resistance Leader
83 Posts
Reputation: 1
Actually there is. I was coding in Haskell with Emacs and it auto indented always right , I was pretty amazed. Did a quick google for ya : http://venkys-dotplan.blogspot.de/2009/0...s-and.html

Seems to work also for python !
Back to top Find Quote
Offline zhuanyi Posted 08-26-2013, 11:15 PM -
Post: #10
Senior Member
357 Posts
Reputation: 5
(08-26-2013, 11:10 PM)tmn29a Wrote: Actually there is. I was coding in Haskell with Emacs and it auto indented always right , I was pretty amazed. Did a quick google for ya : http://venkys-dotplan.blogspot.de/2009/0...s-and.html

Seems to work also for python !

That's quite a lot to read Smile thanks Smile, I'll take a look
Back to top Find Quote


Forum Jump:

User(s) browsing this thread
1 Guest(s)

© 2012 96MB

Community software by MyBB

Premium Theme by ThemeFreak