This commit is contained in:
2022-09-01 15:30:07 -04:00
parent 5bd656d19a
commit dfcb58b81d
2 changed files with 71 additions and 0 deletions
BIN
View File
Binary file not shown.
+71
View File
@@ -0,0 +1,71 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hi\n",
"4\n"
]
}
],
"source": [
"print(\"Hi\")\n",
"print(2+2)\n",
"a = 2"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2\n"
]
}
],
"source": [
"if a == 1:\n",
" print(\"1\")\n",
"elif a == 2:\n",
" print(\"2\")\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.10.5 64-bit",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.5"
},
"orig_nbformat": 4,
"vscode": {
"interpreter": {
"hash": "369f2c481f4da34e4445cda3fffd2e751bd1c4d706f27375911949ba6bb62e1c"
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}