Skip to content

Commit

Permalink
Created using Colab
Browse files Browse the repository at this point in the history
  • Loading branch information
GEORMC committed Sep 11, 2024
1 parent 064d604 commit 30bdccf
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions Problem_6.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"colab": {
"private_outputs": true,
"provenance": [],
"authorship_tag": "ABX9TyPjVCshuGtA9JM+PpXq0+L5",
"authorship_tag": "ABX9TyNlejfLgXR3ydBULQck2neN",
"include_colab_link": true
},
"kernelspec": {
Expand Down Expand Up @@ -34,7 +34,19 @@
"id": "1NEmyPUVZ9Jh"
},
"outputs": [],
"source": []
"source": [
"# Call the function with the name \"Alice\"\n",
"greet(\"Alice\")\n",
"\n",
"# Define a function named greet that takes a name as input\n",
"def greet(name):\n",
" \"\"\"\n",
" This function greets the person passed in as a parameter.\n",
" \"\"\"\n",
" print(\"Hello, \" + name + \"!\")\n",
"\n",
"\n"
]
}
]
}

0 comments on commit 30bdccf

Please sign in to comment.