SageMath language changes since 10.1

asked 2024-05-23 00:35:15 +0200

barry3p141 gravatar image

Terms like "var" and "pi" were usable immediately in SageMath 10.1. In SageMath 10.3, they appear to need preliminary code to work. Is there a list of such changes somewhere, at least for such basic words?

edit retag flag offensive close merge delete

Comments

1

Those terms should still be available. What platform are you using and how did you install SageMath?

John Palmieri gravatar imageJohn Palmieri ( 2024-05-23 02:17:42 +0200 )edit
1

Also, summaries of changes from one version to the next are available at https://wiki.sagemath.org/ReleaseTours.

John Palmieri gravatar imageJohn Palmieri ( 2024-05-23 02:20:00 +0200 )edit

indeed, still there

┌────────────────────────────────────────────────────────────────────┐
│ SageMath version 10.4.beta6, Release Date: 2024-05-12              │
│ Using Python 3.10.12. Type "help()" for help.                      │
└────────────────────────────────────────────────────────────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Warning: this is a prerelease version, and it may be unstable.     ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
sage: pi
pi
sage: n(pi)
3.14159265358979
sage: var('r')
r
FrédéricC gravatar imageFrédéricC ( 2024-05-23 09:24:35 +0200 )edit