Running python3 script from ansible

I have a python3 script that i want to run from a playbook that is using the python2 interpreter. Is this possible?

-john

Yes,

Simplest way is using the 'script' action and make sure the shebang on
the script points to the python3 you want.

Thanks Brian!