Re: [sage-support] space sign in 'show'

2020-06-18 Thread Bert Henry
Am Donnerstag, 18. Juni 2020 19:51:47 UTC+2 schrieb Nils Bruin: > > > show('gx = {}'.format(gx(x,y))) > > > Thanks, it works, not the pretty output, but it works. Bert -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this

Re: [sage-support] space sign in 'show'

2020-06-18 Thread Nils Bruin
On Thursday, June 18, 2020 at 12:18:40 AM UTC-7, Dima Pasechnik wrote: > > > Python's print() function allows you to do formatting, whereas show() is > just a quick hack. > > little correction here: python's strings allow you to do formatting, meaning that whatever formatting you want to do, you

Re: [sage-support] space sign in 'show'

2020-06-18 Thread Dima Pasechnik
On Thu, 18 Jun 2020, 08:05 Bert Henry, wrote: > Hallo, I have a simple question: > > If I code > reset() > g(x,y)=x^2+y^3-8*x-3*y > gx(x,y)=diff(g(x,y),x); show('gx = ',gx(x,y)) > > the result is > gx =2x−8 > > How can I place a space BEHIND the =? > Python's print() function allows you to do

[sage-support] space sign in 'show'

2020-06-18 Thread Bert Henry
Hallo, I have a simple question: If I code reset() g(x,y)=x^2+y^3-8*x-3*y gx(x,y)=diff(g(x,y),x); show('gx = ',gx(x,y)) the result is gx =2x−8 How can I place a space BEHIND the =? Thanks for your answers Bert -- You received this message because you are subscribed to the Google Groups