Differences between revisions 2 and 3
Revision 2 as of 2008-04-13 11:19:57
Size: 259
Editor: anonymous
Comment:
Revision 3 as of 2008-04-13 11:38:40
Size: 520
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
<<TableOfContents(2)>> <<TableOfContents(3)>>
Line 10: Line 10:
== Scalar == == Scalar/Number ==
 * Plain integer: {{{9}}}
 * Long integer: {{{9**99, 1L}}}
 * Hex integer: {{{0x10}}}
 * Floating point: {{{0.1}}}
 * Exponential floating point: {{{1e-3}}}
 * Complex: {{{3+2j}}}
Line 12: Line 18:
== Tuple == == Sequences ==
Line 14: Line 20:
== List == === String ===

=== Tuple ===

=== List ===
Line 18: Line 28:
= Extended data types= = Extended data types =
Line 21: Line 31:

= Copy and reference =

Built-in

Scalar/Number

  • Plain integer: 9

  • Long integer: 9**99, 1L

  • Hex integer: 0x10

  • Floating point: 0.1

  • Exponential floating point: 1e-3

  • Complex: 3+2j

Sequences

String

Tuple

List

Dictionary

Extended data types

Array

Copy and reference

LehreWiki: SiaProgrammingPythonDatatypes (last edited 2008-04-13 17:13:34 by anonymous)