Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 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. "- 산술 연산자 \n",
  12. "\n",
  13. "<hr>"
  14. ]
  15. },
  16. {
  17. "cell_type": "code",
  18. "execution_count": null,
  19. "metadata": {},
  20. "outputs": [],
  21. "source": [
  22. "print (4+5)\n",
  23. "\n",
  24. "print(\"hello world\");\n",
  25. "\n"
  26. ]
  27. },
  28. {
  29. "cell_type": "code",
  30. "execution_count": null,
  31. "metadata": {},
  32. "outputs": [],
  33. "source": [
  34. "print(\"ddd\")"
  35. ]
  36. }
  37. ],
  38. "metadata": {
  39. "kernelspec": {
  40. "display_name": "Python 3",
  41. "language": "python",
  42. "name": "python3"
  43. },
  44. "language_info": {
  45. "codemirror_mode": {
  46. "name": "ipython",
  47. "version": 3
  48. },
  49. "file_extension": ".py",
  50. "mimetype": "text/x-python",
  51. "name": "python",
  52. "nbconvert_exporter": "python",
  53. "pygments_lexer": "ipython3",
  54. "version": "3.7.3"
  55. }
  56. },
  57. "nbformat": 4,
  58. "nbformat_minor": 2
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement