Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 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": "markdown",
  16. "metadata": {},
  17. "source": [
  18. "## 파이썬\n",
  19. "### 파이썬"
  20. ]
  21. },
  22. {
  23. "cell_type": "code",
  24. "execution_count": 14,
  25. "metadata": {},
  26. "outputs": [
  27. {
  28. "name": "stdout",
  29. "output_type": "stream",
  30. "text": [
  31. "False\n",
  32. "Hello world\n"
  33. ]
  34. }
  35. ],
  36. "source": [
  37. "print (4==5);\n",
  38. "print(\"Hello world\");"
  39. ]
  40. },
  41. {
  42. "cell_type": "code",
  43. "execution_count": 13,
  44. "metadata": {},
  45. "outputs": [
  46. {
  47. "name": "stdout",
  48. "output_type": "stream",
  49. "text": [
  50. "3곱하기 3은 9 입니다.\n"
  51. ]
  52. }
  53. ],
  54. "source": [
  55. "print(\"3곱하기 3은\",3*3,\"입니다.\")"
  56. ]
  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.7.3"
  76. }
  77. },
  78. "nbformat": 4,
  79. "nbformat_minor": 2
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement