The simplest approach is to just save the python script as, for example script.py and then either call it from the bash script, or call it after the bash script:
#!/usr/bin/env bash
echo "This is the bash script" &&
/path/to/script.py
Or
script.sh && script.py