两款超级方便的python环境:Google Colab和Spyder
Google Colab和Spyder是两种最傻瓜,最方便的使用python的方法。一键部署,即插即用。 Google Colab and Spyder are two of the simplest and most convenient methods for using Python. 1. Google Colab Google Colab是一个可以运行python的在线服务。 Google Colab is an online service that allows you to run Python. 点击 https://colab.research.google.com/ ,跳转到Google Colab的欢迎页面,它会自动打开Open notebook窗口。点击左下角的"New notebook"。 To use it, visit Google Colab's homepage https://colab.research.google.com/ . This will automatically open the 'Open notebook' window. Click the "New notebook" button on the left-bottom. 如果Open notebook窗口没有自动打开,点击左上角菜单栏的File-New notebook。 If this window doesn't appear, you can create a new notebook by clicking 'File' and then 'New notebook' from the top left menu. 这样就已经可以开始编程了。在光标闪烁处键入python程序,之后点击上方黑色三角形运行此程序。 Once you're set up, you can start programming right away. Just type your Python code where the cursor blinks, and execute the program by clicking the black tria...