Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "# Capstone Project Notebook"
  8. ]
  9. },
  10. {
  11. "cell_type": "markdown",
  12. "metadata": {},
  13. "source": [
  14. "To Do:<br/>\n",
  15. "Import the pandas library as pd.<br/>\n",
  16. "Import the Numpy library as np."
  17. ]
  18. },
  19. {
  20. "cell_type": "code",
  21. "execution_count": 1,
  22. "metadata": {},
  23. "outputs": [],
  24. "source": [
  25. "import pandas as pd\n",
  26. "import numpy as np"
  27. ]
  28. },
  29. {
  30. "cell_type": "markdown",
  31. "metadata": {},
  32. "source": [
  33. "Print the following the statement: Hello Capstone Project Course!"
  34. ]
  35. },
  36. {
  37. "cell_type": "code",
  38. "execution_count": 2,
  39. "metadata": {},
  40. "outputs": [
  41. {
  42. "name": "stdout",
  43. "output_type": "stream",
  44. "text": [
  45. "Hello Capstone Project Course!\n"
  46. ]
  47. }
  48. ],
  49. "source": [
  50. "print(\"Hello Capstone Project Course!\")"
  51. ]
  52. },
  53. {
  54. "cell_type": "code",
  55. "execution_count": null,
  56. "metadata": {},
  57. "outputs": [],
  58. "source": []
  59. }
  60. ],
  61. "metadata": {
  62. "kernelspec": {
  63. "display_name": "Python 3",
  64. "language": "python",
  65. "name": "python3"
  66. },
  67. "language_info": {
  68. "codemirror_mode": {
  69. "name": "ipython",
  70. "version": 3
  71. },
  72. "file_extension": ".py",
  73. "mimetype": "text/x-python",
  74. "name": "python",
  75. "nbconvert_exporter": "python",
  76. "pygments_lexer": "ipython3",
  77. "version": "3.6.8"
  78. }
  79. },
  80. "nbformat": 4,
  81. "nbformat_minor": 2
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement