A
Antoon Pardon
Op 14-06-13 10:37, Nick the Gr33k schreef:
to the number, so there is nothing to be seperated. Only when
a number needs to be printed, is a representation for that
number built and displayed.
a bit of python jargon that has a specific meaning. So in order to
not confuse with multiple possible meanings for "representation" I
chose to use "notation"
write earlier and just plain "eveything" as you write
later. Python works with numbers, but at the moment
it has to display such a number it has to produce something
that is printable. So it will build a string that can be
used as a notation for that number, a numeral. And that
is what will be displayed.
What do you mean? Internally there is no representation linkedHow do we separate a number then from its represenation-natation?
to the number, so there is nothing to be seperated. Only when
a number needs to be printed, is a representation for that
number built and displayed.
Yes a notation is a representation. However "represenation" is alsoWhat is a notation anywat? is it a way of displayment? but that would
be a represeantion then....
a bit of python jargon that has a specific meaning. So in order to
not confuse with multiple possible meanings for "representation" I
chose to use "notation"
There is a difference between "everything we see" as youSo everything we see like:
16474
nikos
abc123
everything is a string and nothing is a number? not even number 1?
write earlier and just plain "eveything" as you write
later. Python works with numbers, but at the moment
it has to display such a number it has to produce something
that is printable. So it will build a string that can be
used as a notation for that number, a numeral. And that
is what will be displayed.