About IDLE?

D

Dr. Pastor

Installed Python 2.4.2 on Windows XP.
Activated IDLE.
Loaded the following into the Edit window:
---
# dates are easily constructed and formatted (Tutorial 10.8)

from datetime import date
now = date.today()
now

now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.")

# dates support calendar arithmetic

birthday = date(1985, 12, 1)
age = now - birthday
age.days
---
When I select Run Module in the Edit window, I got only
two >>> after the RESTART line.
I expected to see the output of several commands!
Typing in age.days do produce the number of days.

Why I do not get any output?
Thanks for any guidance.
 
S

Sybren Stuvel

Dr. Pastor enlightened us with:
When I select Run Module in the Edit window, I got only
two >>> after the RESTART line.
I expected to see the output of several commands!

You never gave it any commands that print output.

I suggest reading the Python tutorial.

Sybren
 
F

Fredrik Lundh

Dr. Pastor said:
Installed Python 2.4.2 on Windows XP.
Activated IDLE.
Loaded the following into the Edit window:
---
# dates are easily constructed and formatted (Tutorial 10.8)

from datetime import date
now = date.today()
now

now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.")

# dates support calendar arithmetic

birthday = date(1985, 12, 1)
age = now - birthday
age.days
---
When I select Run Module in the Edit window, I got only
two >>> after the RESTART line.
I expected to see the output of several commands!
Typing in age.days do produce the number of days.

Why I do not get any output?

while the interactive console echoes the result back if you type in an
arbitrary expression, the interpreter doesn't do that if you run things in
a script.

to print stuff from a script, use the "print" statement.

print now
print now.strftime(...)
...
print age.days

your favourite tutorial (hopefully) contains more information about the
interactive mode, and how it differs from code in scripts or modules.

hope this helps!

</F>
 
N

Nick Smallbone

Sybren said:
Dr. Pastor enlightened us with:

You never gave it any commands that print output.

I suggest reading the Python tutorial.

To be more specific, when you type in an expression at the Python
prompt, it will evaluate it and then print it (if it doesn't evaluate
to None). In a module it doesn't do that, as then you'd have all sorts
of things printed out modules were imported.
 
T

Terry Reedy

Dr. Pastor said:
Installed Python 2.4.2 on Windows XP.
Activated IDLE.
Loaded the following into the Edit window:
Why I do not get any output?
Thanks for any guidance.

When you run code from an edit window, IDLE saves the file to disk and then
*imports* it into the shell window. If you *paste* code into the shell
window (regardless of where from), then it acts like you typed it and you
will get expression results echoed, as you expected.

I got caught be this at first too, since I have run many snippets by
pasting.

Terry Jan Reedy
 
D

Dr. Pastor

Thank you! I can see only your reply.
But indeed google prints three.
The mind boggles.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top