更改测试用例
This commit is contained in:
parent
0b7450e504
commit
970a5d83b9
|
@ -1,8 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE flow PUBLIC "liteflow" "liteflow.dtd">
|
||||
<flow>
|
||||
<nodes>
|
||||
<node id="s1" name="普通脚本1" type="script">
|
||||
<node id="s1" name="普通脚本1" type="script" language="python">
|
||||
<![CDATA[
|
||||
import json
|
||||
x='{"name": "Jack", "age": 75, "nationality": "China"}'
|
||||
jsonData=json.loads(x)
|
||||
temperature=jsonData['name']
|
||||
print(temperature)
|
||||
|
||||
|
||||
a=6
|
||||
b=10
|
||||
if a>5:
|
||||
|
|
Loading…
Reference in New Issue