Can we Store more than 3 values in Project Variables
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2016
11:23 PM
09-20-2016
11:23 PM
Can we Store more than 3 values in Project Variables
Hi ,
Can i store 3 or more values in the Project variables and use them by iteration ,can anyone please help me with an example in python.
Solved! Go to Solution.
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2016
12:41 AM
09-21-2016
12:41 AM
Yes We can store i just tried it worked 😄 😄
def tst(): val = ProjectSuite.Variables.C_Location val1 = ProjectSuite.Variables.D_Location val = val.split(",") val1 = val1.split(",") for i in range(0,4): Log.Message(str(val1[i])) Log.Message(str(val[i])) O/P : North1 North Southn1 South east1 East West1 West
