Calling Python from bash
Jump to navigation
Jump to search
Internal
Overview
This article summarizes a series of aspects related to invoking Python program from bash.
Running a Python Program with a Bash Wrapper
Check out these links for the meaning of standalone Python program and Python script.
Inline Python Code
Use bash here-doc:
python3 <<EOF
print('blah')
EOF
Also see: