Guest User

Untitled

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