diff --git a/automation_code_read.ipynb b/automation_code_read.ipynb new file mode 100644 index 0000000..44b1ec1 --- /dev/null +++ b/automation_code_read.ipynb @@ -0,0 +1,76 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "name": "automation_code_read.ipynb", + "provenance": [], + "collapsed_sections": [], + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "sPHvPZa3A4bo", + "colab_type": "text" + }, + "source": [ + "打印函数\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "CQ2cbi15_Ssx", + "colab_type": "code", + "outputId": "fbb976de-c8fb-4be0-b564-2e7678aa2750", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "def log(*args,**kwargs):\n", + " print(*args,**kwargs)\n", + "\n", + "log([1,'2'])" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "stream", + "text": [ + "[1, '2']\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "U_UPpFDUAvlm", + "colab_type": "text" + }, + "source": [ + "" + ] + } + ] +} \ No newline at end of file