Author Topic: thonny  (Read 6220 times)

Aurel

  • Guest
thonny
« on: February 22, 2017, 07:54:58 AM »
Never again i will promote anyone else work.
« Last Edit: September 23, 2018, 10:04:55 PM by Aurel »

Transdiv

  • Guest
Re: thonny
« Reply #1 on: February 22, 2017, 02:38:47 PM »
Extremely interesting for begginers; Not the typical overwhelming IDE with one million options to choose from.

Tomaaz

  • Guest
Re: thonny
« Reply #2 on: February 25, 2017, 07:53:00 PM »
Everybody knows that i don't like Python  ;D
but this one looks interesting
http://thonny.org/

Do you mean the fact that it's been written in Python? Cause, apart from that, it's just another editor.  ::)

Extremely interesting for begginers; Not the typical overwhelming IDE with one million options to choose from.

Yes, but it's still far from perfection achieved by Aurel in his collection of editors for various languages.  ;)

Don't get me wrong. I'm not saying this is a bad editor, but it's just funny that, after a long break, the first thing I see here is Aurel posting about Python!  ;D

BTW Aurel, I can also see that you have a new forum and a new interpreter in development. So, nothing's really changed...  ;D

Aurel

  • Guest
Re: thonny
« Reply #3 on: February 27, 2017, 06:06:34 PM »
WOW.
« Last Edit: September 23, 2018, 10:07:53 PM by Aurel »

Aurel

  • Guest
Re: thonny
« Reply #4 on: February 27, 2017, 09:55:44 PM »
It
« Last Edit: September 23, 2018, 10:05:33 PM by Aurel »

Aurel

  • Guest
Re: thonny
« Reply #5 on: February 27, 2017, 10:34:32 PM »
W
« Last Edit: September 23, 2018, 10:06:01 PM by Aurel »

Tomaaz

  • Guest
Re: thonny
« Reply #6 on: February 28, 2017, 11:39:31 AM »
Quote
SyntaxError: Missing parentheses in call to 'print'

>>> %Run BENbasic.py
  File "D:\Programs\Thonny\Scripts\BENbasic.py", line 582
    print str(i)+" "+lines
            ^
SyntaxError: invalid syntax

is that really true (is that because py3 ??? ) .he hee

Yes. It should be print(str(i) + " " + lines[1]).
« Last Edit: February 28, 2017, 11:42:29 AM by Tomaaz »

Aurel

  • Guest
Re: thonny
« Reply #7 on: February 28, 2017, 02:39:34 PM »
..a
« Last Edit: September 23, 2018, 10:06:23 PM by Aurel »

Tomaaz

  • Guest
Re: thonny
« Reply #8 on: February 28, 2017, 07:55:02 PM »
Yes, this is Python 2 code that won't run with Python 3. In Python 3 print is a function and needs parentesis. In Python 2 parenthesis with print are optional.

Aurel

  • Guest
Re: thonny
« Reply #9 on: March 07, 2017, 11:15:17 AM »
ahh
« Last Edit: September 23, 2018, 10:06:44 PM by Aurel »

Tomaaz

  • Guest
Re: thonny
« Reply #10 on: March 10, 2017, 06:03:56 PM »
ahh py2...py3 what a stupid syntax changes

Yes. That's probably the worse thing that happened to Python. I want to believe there was a really important reason for that.

anyway i have found one on github called tooBasic as author says based on rfobasic
tokenizer

What's the point of posting the source code instead of link to the github page?

EDIT Aurel, is the forum I mentioned in my first post here already gone? Did you manage to start a new one in the meantime? What is current life expectancy of your forums? A month? A week? ;D
« Last Edit: March 10, 2017, 06:20:25 PM by Tomaaz »

Aurel

  • Guest
Re: thonny
« Reply #11 on: March 10, 2017, 11:01:32 PM »
no
« Last Edit: September 23, 2018, 10:06:58 PM by Aurel »

Tomaaz

  • Guest
Re: thonny
« Reply #12 on: March 11, 2017, 09:26:43 AM »
no forum is still there..

So, why the address in your profile has been changed? ;D

about py3 hmm it looks is not "popular" like py2
anyway who care?

Why double quotes? Python is quite popular on Github - http://githut.info/ .

Aurel

  • Guest
Re: thonny
« Reply #13 on: March 11, 2017, 05:23:57 PM »
-
« Last Edit: September 23, 2018, 10:07:24 PM by Aurel »

ScriptBasic

  • Guest
Re: thonny
« Reply #14 on: March 12, 2017, 06:44:28 PM »
Quote
Python is quite popular on Github

My experience with Python has been that the interpreter has a huge memory footprint, everything is an IMPORT and the C interface is a kludge. (putting all the other quirks aside)