Back to Intellij Community

Python Script.Py

python/pluginResources/fileTemplates/internal/Python Script.py.html

2025.3-rc-2173 B
Original Source

Creates an empty Python file.

A simple example of a Python script:

def print_hi(name):
print(f'Hi, {name}')

if __name__ == ' __main__':
print_hi('Python')