Advertisement
Guest User

Untitled

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