helloworld

Hello World in Multiple Languages Extravaganza: Python

Summary

This directory contains two Python examples:

It also includes test_helloworld.py, which is discoverable through standard unittest discovery.

Files

hellotest.py is kept for backwards compatibility. test_helloworld.py is the canonical test entry point.

Run

From the repository root:

python python/helloworld.py
python python/helloworld2.py
python -m unittest discover -s python -p "test*.py" -v

Or from inside python/:

python helloworld.py
python helloworld2.py
python -m unittest discover -p "test*.py" -v

Tasks

Notes