vote up 0 vote down star

Is there a way to paste a block of code into IDLE? Pasting line by line works, but sometimes I'd like to paste many lines at once. When I try, IDLE reads the first line and ignores the rest.

>>> a = 1
b = 2
c = 3

>>> 
>>> a
1
>>> b

Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    b
NameError: name 'b' is not defined
flag

1 Answer

vote up 1 vote down check

Probably not the most beautiful procedure, but this works:

cmds = '''

paste your commands, followed by ''':

a = 1
b = 2
c = 3
'''

Then exec(cmds) will execute them.

Or more directly,

exec('''

then paste your commands, followed by '''):

a = 1
b = 2
c = 3
''')

It's just a trick, maybe there's a more official, elegant way.

link|flag
that works, but I was really hoping for something more elegant. It's pretty common to paste a bunch of lines into IDLE. Testing parts of code from an IDE or running stuff posted on SO or whatever. – foosion Oct 23 at 20:01
Yes, I often ran into the same issue and asked myself the same question... Same happens when pasting indented part of code, "solved" by typing if True: then pasting the code. A bit of a dirty trick ;-) – RedGlyph Oct 23 at 20:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.