Build a hello world bot with a Python function
- Updated: 2021/09/03
Build a hello world bot with a Python function
Build a bot that calls a Python function to say hello world.
Prerequisites
To run Python script from Automation 360, you must already have the latest version of Python 3.x installed on your device.
Here is a Python script with one simple function. This script is used in this
task.
# Function definition is here
def printme( str ):
print(str)
return str