Guest User

Untitled

a guest
Jan 23rd, 2019
114
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. "# Data Science Capstone Project"
  8. ]
  9. },
  10. {
  11. "cell_type": "markdown",
  12. "metadata": {},
  13. "source": [
  14. "This notebook will be used for the capstone project of the Applied Data Science Capstone course"
  15. ]
  16. },
  17. {
  18. "cell_type": "markdown",
  19. "metadata": {},
  20. "source": [
  21. "## Part 1: importing libraries and sending hello to the world"
  22. ]
  23. },
  24. {
  25. "cell_type": "code",
  26. "execution_count": 2,
  27. "metadata": {},
  28. "outputs": [],
  29. "source": [
  30. "import pandas as pd\n",
  31. "import numpy as np"
  32. ]
  33. },
  34. {
  35. "cell_type": "code",
  36. "execution_count": 3,
  37. "metadata": {},
  38. "outputs": [
  39. {
  40. "name": "stdout",
  41. "output_type": "stream",
  42. "text": [
  43. "Hello Capstone Project Course!\n"
  44. ]
  45. }
  46. ],
  47. "source": [
  48. "print(\"Hello Capstone Project Course!\")"
  49. ]
  50. },
  51. {
  52. "cell_type": "code",
  53. "execution_count": null,
  54. "metadata": {},
  55. "outputs": [],
  56. "source": []
  57. }
  58. ],
  59. "metadata": {
  60. "kernelspec": {
  61. "display_name": "Python 3",
  62. "language": "python",
  63. "name": "python3"
  64. },
  65. "language_info": {
  66. "codemirror_mode": {
  67. "name": "ipython",
  68. "version": 3
  69. },
  70. "file_extension": ".py",
  71. "mimetype": "text/x-python",
  72. "name": "python",
  73. "nbconvert_exporter": "python",
  74. "pygments_lexer": "ipython3",
  75. "version": "3.6.6"
  76. }
  77. },
  78. "nbformat": 4,
  79. "nbformat_minor": 2
  80. }
Add Comment
Please, Sign In to add comment