You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.3 KiB

3 years ago
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "# 实验2:What is Python?\n",
  8. "#### 【知识点】Python是一种通用编码语言,可以用来构建各类程序。由于其具有大量功能强大且易于使用的库,Python在AI开发中得到广泛使用。\n",
  9. "## 【实验目标】掌握编程环境,及基本编程方法。\n",
  10. "#### 使用水杉平台的在线JupyterHub,它是基于Jupyter Notebook的多人在线代码编辑平台。\n",
  11. "\n"
  12. ]
  13. },
  14. {
  15. "cell_type": "code",
  16. "execution_count": 1,
  17. "metadata": {},
  18. "outputs": [
  19. {
  20. "data": {
  21. "text/plain": [
  22. "1"
  23. ]
  24. },
  25. "execution_count": 1,
  26. "metadata": {},
  27. "output_type": "execute_result"
  28. }
  29. ],
  30. "source": [
  31. "number=1\n",
  32. "number"
  33. ]
  34. },
  35. {
  36. "cell_type": "code",
  37. "execution_count": null,
  38. "metadata": {},
  39. "outputs": [],
  40. "source": []
  41. }
  42. ],
  43. "metadata": {
  44. "kernelspec": {
  45. "display_name": "Python 3",
  46. "language": "python",
  47. "name": "python3"
  48. },
  49. "language_info": {
  50. "codemirror_mode": {
  51. "name": "ipython",
  52. "version": 3
  53. },
  54. "file_extension": ".py",
  55. "mimetype": "text/x-python",
  56. "name": "python",
  57. "nbconvert_exporter": "python",
  58. "pygments_lexer": "ipython3",
  59. "version": "3.6.5"
  60. }
  61. },
  62. "nbformat": 4,
  63. "nbformat_minor": 2
  64. }