Sorry, this content is no longer available

Ask Your Question
0

Display variable value

asked 13 years ago

richtopia gravatar image

I would like to rapidly report stored values along with the variable name. In python I can do print('A=' + A) for this, which does not seem to work in Sage. Is there a command with this function or a way to fix this print statement?

Preview: (hide)

Comments

You can? This doesn't work in Python 2.6, anyway, and yields the expected error. Is it possible that this works in Python 3?

kcrisman gravatar imagekcrisman ( 13 years ago )

3 Answers

Sort by » oldest newest most voted
1

answered 13 years ago

Shashank gravatar image

updated 13 years ago

kcrisman gravatar image
A=10
print 'A =',A
Preview: (hide)
link

Comments

The initial `var` was erroneous, because the `A=10` cancels that out.

kcrisman gravatar imagekcrisman ( 13 years ago )
1

answered 13 years ago

niles gravatar image

print('A=' + A) doesn't work for me in Python 2.6 or 3.2 (unless A happens to be a string). What does work in Python, and in Sage, is print('A=' + str(A)). You have to convert the variable to a string before you can concatenate it with another string.

Preview: (hide)
link
0

answered 13 years ago

parzan gravatar image

Some options:

sage: print 'A=',A
A= 10
sage: print 'A='+`A`
A=10
sage: print 'A=%03d'%A
A=010
Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 13 years ago

Seen: 12,309 times

Last updated: Mar 28 '12