category icon
2021-09-03
Python

【Python 入門】一番簡単な Python プログラム Hello World を表示する方法

Windows 10 64bit
21H1
Python
3.9.7
profile
hikaru
Software Developer / DIY'er

Python プログラムを作成する

hello.py

python
print("Hello World!")

Python プログラムを実行する

PowerShell やコマンドプロンプトなどで python hello.py を実行して Hello World! と表示されれば成功です。

powershell
> python hello.py
Hello World!

おわり。おつかれさまでした~