This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dongxiaoyan-tsg-autotest/05-Other/variable/my3.py
2020-12-15 19:58:08 +08:00

10 lines
338 B
Python

def get_variables1():
variables = {"VARIABLE":"An example string",
"ANOTHER VARIABLE":"This is pretty easy!",
"INTEGER":66,
"STRINGS":["one","two","kolme","four"],
"NUMBERS":[1,66,3.1415926],
"MAPPING":'{"one":1,"two":2,"three":3}',
"DXY":'{"one":1,"two":2,"three":${VARIABLE}}'}
return variables