We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c81157e commit 1a978a5Copy full SHA for 1a978a5
1 file changed
functions.ipynb
@@ -2894,12 +2894,12 @@
2894
},
2895
{
2896
"cell_type": "code",
2897
- "execution_count": 2,
+ "execution_count": null,
2898
"metadata": {},
2899
"outputs": [],
2900
"source": [
2901
"def rot(char, turn=13):\n",
2902
- " # turn이 1 이상 25 이하가 아닐 때는 원래 문자를 반환\n",
+ " # turn이 1 이상 25 이하가 아닐 때는 바로 원래 문자를 반환\n",
2903
" if not (1 <= turn <= 25):\n",
2904
" return char\n",
2905
"\n",
0 commit comments