OC: Windows 2008 R2 Enterprise
My task: I need to create an html file with a variable number of pictures. And for each picture attached link. This type:
<a href='$graph_url' > <img src='$graph_picture'> </a> Sheet (s) with links and sheet with paths to pictures are generated in advance.
Question: Is it possible in the shell to create tuples as in python? a pair of data that is processed as one object: ($ graph_url, $ graph_picture)
From them I could create a sheet and create the above html inserts:
list=(u1,p1) (u2,p2) (u3,p3) Question 2: Is it possible to iterate through two sheets at once? Then I could, as an alternative, create two sheets and achieve the same result. "for i in list" is clearly not appropriate.
I will be grateful to any idea that will move me forward.