As in my previous scrip, there are several ways to use Python.
ex.
Recommended for those who want to install Python, and work on different projects in a light development environment.
It is convenient to utilize the rich expansion features and Git interworking provided by VSCode.
If want to mainly do data analysis, machine learning/deep learning practice, the rich package Anaconda has and Jupiter laptops are very convenient.
Recommended for those who want to reliably process data in their local environment and manage packages in an easy way.
No need for a separate installation, and you can run Python code straight from the cloud.
GPU/TPU is free (for a certain amount of time), so it is especially recommended for deep learning practice.
Can work anytime, anywhere on the Internet, so it's very convenient if need a simple practice or sharing.




Launch IDLE (Python 3.13 64-bit)

text
import this

Python's philosophy
install anconda
install jupyter
Already done it up there, so skip it
Go to Python's official site (https://www.python.org/downloads/ ).
Download the latest version for your operating system (I use Windows).
Launch python exe file. (ignore the version ㅎㅎ)








- If you just click Install Now ---------------------------------------
Environment Variable path :
C:\Users\ [USER NAME]\AppData\Local\Programs\Python\Python312\
C:\Users\ [USER NAME]\AppData\Local\Programs\Python\Python312\Scripts\




If not, must edit the env variable part
It is available for free download from the official VSCode site
The installation process does not require any special options, so you can install it with the default settings.
Github Account creation is recommended to use Git Copilot & Git interlock
+) Difference of git & github
=> git: locally management source code
=> github: Space to upload and share locally managed source code
My Other posts will provide information about "the git"


Run VSCode.
Click the Extensions icon in the left sidebar, or click the top menu View > Extensions.

additionally install Python Extension Pack extension facilitates Python grammar emphasis, code auto-completion, debugging, and more.
(Optional) An additional Jupiter extension can also be installed to execute the code in the form of a Jupiter laptop within the VSCode.


done
Create a Python file on your desktop.
Create a new file in VSCode and save it as a " .py extension ", such as " test.py " .





print("hello world")
# This is a comment
user_input = int(input("text number: "))
if user_input == 5:
print("you text 5")
else:
print("you text not 5")
or crtl+shift+d and F5

Google Colab is a cloud-based Jupiter laptop experience provided by Google. The benefit is that you can run Python code with just a web browser without a separate installation.
Must have a Google account (for example, a Gmail account).
From a web browser, go to the Google Colab link
If you want to create a new file on your Google Drive, you can choose Google Drive > New > View More > Google Catalog.
When create a new laptop, it is saved to Google Drive in the form of a .ipynb file.
Just like Jupiter laptops, you can use code cells and markdown cells to write code and check the results.
GPU and TPU can be used to some extent even in a free environment, which is useful for deep learning and machine learning practice.
If various packages are already installed, and additional installations are required, you can install them immediately by running !pip install in the cell.