When studying Python, I think it's important to first know the characteristics of the language in order to write "well-behaved" code.
So, when I investigated the features of Python, there was an article in @IT.
-What kind of language is Python?
Reading the feature that "many processes can be described in one line", I feel a little uneasy as a person who has been frustrated with Perl in the past, but it seems that the motto is "simple is better", so expect it. I will do it.
"Available on the Web" introduced in the @IT article "What kind of language is Python?" The GUI of "Project Jupyter" which is "Python environment" has been changed a little, so I will describe the operation method.
First, access the "Project Jupyter" page.
https://jupyter.org/index.html
Then click "Try it in your browser" in "Jupyter Lab 1.0".
You will be taken to the "Try Jupyter" page, so click "Try Jupyter Lab".
The startup screen will appear, so wait for a while until it starts.
The startup is completed when the following screen is displayed.
To run Python, select the menu File-New-Notebook.
Then, a dialog will be displayed, so select "Python3".
A new tag will be created to run Python.
Enter the Python program in the text area of the new tag.
Press the "▶ ︎" button on the upper side of the tag.
This will execute the Python code you entered.
Please note that the Python execution environment on the Web by "Project Jupyter" will lose the created environment itself after a certain period of time without inputting anything, and you will have to start over from the beginning. Please note that this is just a trial environment.
Thank you for watching until the end.
Recommended Posts