#!/bin/sh

for v in 2.3 2.4 2.5
do
    if python$v -V 2> /dev/null
    then
        echo python$v
    fi
done

