Syntax to send an array as a parameter to function
Answers
Answered by
1
The code which i have written to send the an array list to a text-box in my internal site. Where the input to array is from excel.
value = [] // ArrayList
while len(value)<1000:
Data=sheet.row(loop)
T1 = Data[1].value
T2=int(T1) // to remove float values
T2 = str(T2) // as the text-box is only accepting the strings
value.append(T2)
loop += 1 //
plz follow me.
Similar questions
Hindi,
6 months ago
Math,
6 months ago
Math,
6 months ago
Environmental Sciences,
1 year ago
Biology,
1 year ago