Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "<h1 style=\"color:orange\">파이썬의 대화식 모드</h1>\n",
  8. "\n",
  9. "- 산술 연산자\n",
  10. "- 관계 연산자\n",
  11. "<hr>"
  12. ]
  13. },
  14. {
  15. "cell_type": "code",
  16. "execution_count": 5,
  17. "metadata": {},
  18. "outputs": [
  19. {
  20. "name": "stdout",
  21. "output_type": "stream",
  22. "text": [
  23. "9\n",
  24. "Hello World\n"
  25. ]
  26. }
  27. ],
  28. "source": [
  29. "print (4+5)\n",
  30. "print(\"Hello World\")"
  31. ]
  32. },
  33. {
  34. "cell_type": "code",
  35. "execution_count": 6,
  36. "metadata": {},
  37. "outputs": [
  38. {
  39. "name": "stdout",
  40. "output_type": "stream",
  41. "text": [
  42. "9 곱하기 3은 27 입니다\n"
  43. ]
  44. }
  45. ],
  46. "source": [
  47. "print (\"9 곱하기 3은 \", 9*3, \"입니다\")"
  48. ]
  49. },
  50. {
  51. "cell_type": "code",
  52. "execution_count": null,
  53. "metadata": {},
  54. "outputs": [],
  55. "source": []
  56. },
  57. {
  58. "cell_type": "code",
  59. "execution_count": null,
  60. "metadata": {},
  61. "outputs": [],
  62. "source": []
  63. },
  64. {
  65. "cell_type": "code",
  66. "execution_count": null,
  67. "metadata": {},
  68. "outputs": [],
  69. "source": []
  70. },
  71. {
  72. "cell_type": "code",
  73. "execution_count": null,
  74. "metadata": {},
  75. "outputs": [],
  76. "source": []
  77. }
  78. ],
  79. "metadata": {
  80. "kernelspec": {
  81. "display_name": "Python 3",
  82. "language": "python",
  83. "name": "python3"
  84. },
  85. "language_info": {
  86. "codemirror_mode": {
  87. "name": "ipython",
  88. "version": 3
  89. },
  90. "file_extension": ".py",
  91. "mimetype": "text/x-python",
  92. "name": "python",
  93. "nbconvert_exporter": "python",
  94. "pygments_lexer": "ipython3",
  95. "version": "3.7.3"
  96. }
  97. },
  98. "nbformat": 4,
  99. "nbformat_minor": 2
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement