Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "code",
  5. "execution_count": 1,
  6. "metadata": {},
  7. "outputs": [
  8. {
  9. "data": {
  10. "text/plain": [
  11. "2"
  12. ]
  13. },
  14. "execution_count": 1,
  15. "metadata": {},
  16. "output_type": "execute_result"
  17. }
  18. ],
  19. "source": [
  20. "1 + 1"
  21. ]
  22. },
  23. {
  24. "cell_type": "code",
  25. "execution_count": 2,
  26. "metadata": {},
  27. "outputs": [
  28. {
  29. "name": "stdout",
  30. "output_type": "stream",
  31. "text": [
  32. "3\n"
  33. ]
  34. }
  35. ],
  36. "source": [
  37. "x = 1 + 2\n",
  38. "print(x)"
  39. ]
  40. },
  41. {
  42. "cell_type": "code",
  43. "execution_count": 1,
  44. "metadata": {},
  45. "outputs": [
  46. {
  47. "data": {
  48. "text/plain": [
  49. "4"
  50. ]
  51. },
  52. "execution_count": 1,
  53. "metadata": {},
  54. "output_type": "execute_result"
  55. }
  56. ],
  57. "source": [
  58. "2 + 2"
  59. ]
  60. },
  61. {
  62. "cell_type": "code",
  63. "execution_count": null,
  64. "metadata": {},
  65. "outputs": [],
  66. "source": []
  67. }
  68. ],
  69. "metadata": {
  70. "kernelspec": {
  71. "display_name": "Apache Toree - Scala",
  72. "language": "scala",
  73. "name": "apache_toree_scala"
  74. },
  75. "language_info": {
  76. "codemirror_mode": "text/x-scala",
  77. "file_extension": ".scala",
  78. "mimetype": "text/x-scala",
  79. "name": "scala",
  80. "pygments_lexer": "scala",
  81. "version": "2.11.12"
  82. }
  83. },
  84. "nbformat": 4,
  85. "nbformat_minor": 4
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement