File: hello_world.py

package info (click to toggle)
flake8-black 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 207; sh: 38; makefile: 2
file content (13 lines) | stat: -rwxr-xr-x 313 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Print 'Hello world' to the terminal.

This is a simple test script using a hashbang line and a PEP263 encoding line.

In the original format, there excess spaces in the print call, and unwanted
blank lines - which black will remove.
"""


print ( "Hello world" )