Skip to content

Commit 43f4bbc

Browse files
committed
run paramaterized example with formatting
1 parent 07be6ea commit 43f4bbc

11 files changed

Lines changed: 43944 additions & 0 deletions
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": [
9+
"from IPython.display import display, Markdown\n",
10+
"import datetime"
11+
]
12+
},
13+
{
14+
"cell_type": "code",
15+
"execution_count": null,
16+
"metadata": {},
17+
"outputs": [],
18+
"source": [
19+
"if 'date' not in globals():\n",
20+
" date = datetime.date(2022, 8, 20)"
21+
]
22+
},
23+
{
24+
"cell_type": "code",
25+
"execution_count": null,
26+
"metadata": {},
27+
"outputs": [],
28+
"source": [
29+
"display(\n",
30+
" Markdown(\n",
31+
" f'This worksheet is reporting on \"{date}\".'\n",
32+
" )\n",
33+
")"
34+
]
35+
}
36+
],
37+
"metadata": {
38+
"kernelspec": {
39+
"display_name": "Python 3.9.7 ('wvpy_dev_env')",
40+
"language": "python",
41+
"name": "python3"
42+
},
43+
"language_info": {
44+
"codemirror_mode": {
45+
"name": "ipython",
46+
"version": 3
47+
},
48+
"file_extension": ".py",
49+
"mimetype": "text/x-python",
50+
"name": "python",
51+
"nbconvert_exporter": "python",
52+
"pygments_lexer": "ipython3",
53+
"version": "3.9.7"
54+
},
55+
"orig_nbformat": 4,
56+
"vscode": {
57+
"interpreter": {
58+
"hash": "de61a91f2d463130b9aa6c98a58b997c68329843ba48f8b0a87071d382b7e8f6"
59+
}
60+
}
61+
},
62+
"nbformat": 4,
63+
"nbformat_minor": 2
64+
}

0 commit comments

Comments
 (0)