Skip to content

Commit de55788

Browse files
committed
updates to Python version and year
1 parent 6772c4d commit de55788

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

001_Variables_and_Types.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
"metadata": {},
5151
"source": [
5252
"For instance:\n",
53-
"- `ocean_mapping_2019` is a valid variable name.\n",
54-
"- `Ocean_mapping_2019` is a valid variable, but does not follow the convention because it starts with an uppercase `O`.\n",
55-
"- `ocean_mapping_2019` and `Ocean_mapping_2019` are **different** variables that are both valid. However, it is a bad habit to have variables that are only different in the letter case.\n",
56-
"- `2019_ocean_mapping` will **not** work because it has `2` as first character. "
53+
"- `ocean_mapping_2022` is a valid variable name.\n",
54+
"- `Ocean_mapping_2022` is a valid variable, but does not follow the convention because it starts with an uppercase `O`.\n",
55+
"- `ocean_mapping_2022` and `Ocean_mapping_2022` are **different** variables that are both valid. However, it is a bad habit to have variables that are only different in the letter case.\n",
56+
"- `2022_ocean_mapping` will **not** work because it has `2` as first character. "
5757
]
5858
},
5959
{

SUP_Python_is_Dynamically_and_Strongly_Typed.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"cell_type": "markdown",
117117
"metadata": {},
118118
"source": [
119-
"* [The official Python 3.6 documentation](https://docs.python.org/3.6/index.html)\n",
119+
"* [The official Python 3.9 documentation](https://docs.python.org/3.9/index.html)\n",
120120
"* [Why is Python a dynamic language and also a strongly typed language](https://wiki.python.org/moin/Why%20is%20Python%20a%20dynamic%20language%20and%20also%20a%20strongly%20typed%20language)"
121121
]
122122
},

0 commit comments

Comments
 (0)