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 064d604 commit 30bdccfCopy full SHA for 30bdccf
Problem_6.ipynb
@@ -5,7 +5,7 @@
5
"colab": {
6
"private_outputs": true,
7
"provenance": [],
8
- "authorship_tag": "ABX9TyPjVCshuGtA9JM+PpXq0+L5",
+ "authorship_tag": "ABX9TyNlejfLgXR3ydBULQck2neN",
9
"include_colab_link": true
10
},
11
"kernelspec": {
@@ -34,7 +34,19 @@
34
"id": "1NEmyPUVZ9Jh"
35
36
"outputs": [],
37
- "source": []
+ "source": [
38
+ "# Call the function with the name \"Alice\"\n",
39
+ "greet(\"Alice\")\n",
40
+ "\n",
41
+ "# Define a function named greet that takes a name as input\n",
42
+ "def greet(name):\n",
43
+ " \"\"\"\n",
44
+ " This function greets the person passed in as a parameter.\n",
45
46
+ " print(\"Hello, \" + name + \"!\")\n",
47
48
+ "\n"
49
+ ]
50
}
51
]
52
0 commit comments