Python 関数を使用した Hello World Bot のビルド
- 最終更新日2021/09/03
Python 関数を使用した Hello World Bot のビルド
Python 関数を呼び出して、Hello World と表示する Bot をビルドします。
前提条件
Automation 360 から Python スクリプトを実行するには、最新バージョンの Python 3.x がデバイスにインストールされている必要があります。
こちらは、単純な 1 つの関数を持つ Python スクリプトです。このタスクではこのスクリプトが使用されます。
# Function definition is here
def printme( str ):
print(str)
return str