8000 bug fix · hydroffice/python_basics@3e2756c · GitHub
[go: up one dir, main page]

Skip to content

Commit 3e2756c

Browse files
author
giumas
committed
bug fix
1 parent 120df11 commit 3e2756c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

003_Conditional_Execution.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -689,14 +689,14 @@
689689
"outputs": [],
690690
"source": [
691691
"cur_strength = 5.5 # m/s\n",
692-
"cur_type = \"unknown\"\n",
692+
"cur_type = \"Unknown\"\n",
693693
"\n",
694694
"if cur_strength < 1.0:\n",
695-
" cur_type = \"weak\"\n",
695+
" cur_type = \"Weak\"\n",
696696
"elif cur_strength < 5.0:\n",
697-
" cur_type = \"moderate\"\n",
697+
" cur_type = \"Moderate\"\n",
698698
"else: # any current >= 5.0\n",
699-
" cur_type = \"strong\"\n",
699+
" cur_type = \"Strong\"\n",
700700
" \n",
701701
"print(cur_type)"
702702
]
@@ -708,7 +708,7 @@
708708
"outputs": [],
709709
"source": [
710710
"cur_strength = 5.5 # m/s\n",
711-
"cur_type = \"unknown\""
711+
"cur_type = \"Unknown\""
712712
]
713713
},
714714
{

0 commit comments

Comments
 (0)
0