We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 120df11 commit 3e2756cCopy full SHA for 3e2756c
003_Conditional_Execution.ipynb
@@ -689,14 +689,14 @@
689
"outputs": [],
690
"source": [
691
"cur_strength = 5.5 # m/s\n",
692
- "cur_type = \"unknown\"\n",
+ "cur_type = \"Unknown\"\n",
693
"\n",
694
"if cur_strength < 1.0:\n",
695
- " cur_type = \"weak\"\n",
+ " cur_type = \"Weak\"\n",
696
"elif cur_strength < 5.0:\n",
697
- " cur_type = \"moderate\"\n",
+ " cur_type = \"Moderate\"\n",
698
"else: # any current >= 5.0\n",
699
- " cur_type = \"strong\"\n",
+ " cur_type = \"Strong\"\n",
700
" \n",
701
"print(cur_type)"
702
]
@@ -708,7 +708,7 @@
708
709
710
711
- "cur_type = \"unknown\""
+ "cur_type = \"Unknown\""
712
713
},
714
{
0 commit comments