Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "\n",
  8. "### Write some markdown to explain that this notebook will be mainly used for the capstone project.\n",
  9. "### Import the pandas library as pd.\n",
  10. "### Import the Numpy library as np.\n",
  11. "### Print the following the statement: Hello Capstone Project Course!"
  12. ]
  13. },
  14. {
  15. "cell_type": "code",
  16. "execution_count": 3,
  17. "metadata": {},
  18. "outputs": [
  19. {
  20. "name": "stdout",
  21. "output_type": "stream",
  22. "text": [
  23. "Hello Capstone Project Course!\n"
  24. ]
  25. }
  26. ],
  27. "source": [
  28. "import pandas as pd\n",
  29. "import numpy as np\n",
  30. "print(\"Hello Capstone Project Course!\")"
  31. ]
  32. },
  33. {
  34. "cell_type": "code",
  35. "execution_count": null,
  36. "metadata": {},
  37. "outputs": [],
  38. "source": []
  39. }
  40. ],
  41. "metadata": {
  42. "kernelspec": {
  43. "display_name": "Python 3",
  44. "language": "python",
  45. "name": "python3"
  46. },
  47. "language_info": {
  48. "codemirror_mode": {
  49. "name": "ipython",
  50. "version": 3
  51. },
  52. "file_extension": ".py",
  53. "mimetype": "text/x-python",
  54. "name": "python",
  55. "nbconvert_exporter": "python",
  56. "pygments_lexer": "ipython3",
  57. "version": "3.6.8"
  58. }
  59. },
  60. "nbformat": 4,
  61. "nbformat_minor": 2
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement