#!/bin/sh
for file in test*.py
do
    python2  $file; echo '========= end of `python2  '$file'` =========='
    python3 $file; echo '========= end of `python3  '$file'` =========='
done
