Gmail, Google Drive, Google keep, Google Docs ..
Google offers a free and convenient service,
As a companion, there is a service called colaboratory.
Free with the cloud version of Jupiter Notebook You can run python.
Personally, I think it's a very interesting service
It's been about two months since I started using it. I posted it with the hope that I could share what I was able to improve.
★ Program execution -Every time you add a code, press the + button to add a line to enter. -Press an icon like the YouTube play button.
Compared to executing a shell command with Tera Term I thought it was a hassle because it hindered my thinking subtly.
Shift + Enter will automatically add the program execution and the following command input line. It's definitely easier.
★ OS command Most OS commands can be executed by prefixing them with!
Example) !pwd !pip install ** !apt-get install **
For some reason! The command does not work well with cd With% cd, it worked fine.
★editor You cannot edit the file with vi.
It's a little inconvenient, but you can overwrite the file with the %% writefile command.
Command! cat file1 Result abc
Command %% writefile file1 abcd No result
Command! cat file1 Result abcd
There are some inconveniences, but while reading a python book Check the operation of python (pandas, matplotlib, seaborn), It's more than enough for practicing python code.
Recommended Posts