1
0
mirror of https://github.com/gsi-upm/sitc synced 2024-09-28 16:11:42 +00:00

Errata variable

This commit is contained in:
cif2cif 2016-02-23 16:30:29 +01:00
parent 09cd7ca0d2
commit fdb3746c51

View File

@ -141,8 +141,8 @@
"source": [ "source": [
"Objects whose value can change are said to be **mutable**; objects whose value is unchangeable once they are created are called **immutable**.\n", "Objects whose value can change are said to be **mutable**; objects whose value is unchangeable once they are created are called **immutable**.\n",
"\n", "\n",
"* **Mutable types**: integers, floats, strings, tuples\n", "* **Mutable types**: integers, floats, strings, lists, set\n",
"* **Inmutable types**: lists, dictionaries" "* **Inmutable types**: tuples, ranges, dictionaries"
] ]
}, },
{ {
@ -212,7 +212,7 @@
"print('a', a)\n", "print('a', a)\n",
"print('b', b)\n", "print('b', b)\n",
"\n", "\n",
"# Which will be the value " "# Which will be the value of a and b?"
] ]
}, },
{ {