Files
openide/python/pluginResources/fileTemplates/internal/Python Script.py.html
Semyon Proshev b470c828e0 Update python file templates' descriptions (PY-48274)
GitOrigin-RevId: 61c9420a274b546d3afffa6b8e72f5e3f1da515e
2021-04-30 14:51:59 +00:00

12 lines
324 B
HTML

<html>
<body>
<p>Creates an empty Python file.</p>
<p>A simple example of a Python script:</p>
<code>def print_hi(name):</code><br/>
<code>&nbsp;&nbsp;&nbsp;&nbsp;print(f'Hi, {name}')</code><br/>
<br/>
<br/>
<code>if __name__ == '__main__':</code><br/>
<code>&nbsp;&nbsp;&nbsp;&nbsp;print_hi('Python')</code>
</body>
</html>