pipeline { agent any stages { stage('Hello') { steps { echo "hello wordl" sh "python3 --version" } } } }