An introduction to python

02.hello-world.ipynb 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "# Hello World"
  8. ]
  9. },
  10. {
  11. "cell_type": "markdown",
  12. "metadata": {},
  13. "source": [
  14. "We are going to start with classic Hello World program \n",
  15. "Click the ```Run``` button above or press ```Ctrl+Enter```"
  16. ]
  17. },
  18. {
  19. "cell_type": "code",
  20. "execution_count": null,
  21. "metadata": {},
  22. "outputs": [],
  23. "source": [
  24. "print(\"Hello World\")"
  25. ]
  26. },
  27. {
  28. "cell_type": "markdown",
  29. "metadata": {},
  30. "source": [
  31. "Try to make it say hello, your name bellow. "
  32. ]
  33. },
  34. {
  35. "cell_type": "code",
  36. "execution_count": null,
  37. "metadata": {},
  38. "outputs": [],
  39. "source": []
  40. },
  41. {
  42. "cell_type": "markdown",
  43. "metadata": {},
  44. "source": [
  45. "<a href=\"http://localhost:8888/notebooks/01.intro.ipynb\">Previous Intro </a> \n",
  46. "&nbsp;\n",
  47. "<a href=\"http://localhost:8888/notebooks/00.index.ipynb\">Index</a>\n",
  48. "&nbsp;\n",
  49. "<a style=\"\" href=\"http://localhost:8888/notebooks/03.maths.ipynb\">Next Maths</a> "
  50. ]
  51. }
  52. ],
  53. "metadata": {
  54. "kernelspec": {
  55. "display_name": "Python 3",
  56. "language": "python",
  57. "name": "python3"
  58. },
  59. "language_info": {
  60. "codemirror_mode": {
  61. "name": "ipython",
  62. "version": 3
  63. },
  64. "file_extension": ".py",
  65. "mimetype": "text/x-python",
  66. "name": "python",
  67. "nbconvert_exporter": "python",
  68. "pygments_lexer": "ipython3",
  69. "version": "3.6.6"
  70. }
  71. },
  72. "nbformat": 4,
  73. "nbformat_minor": 2
  74. }