Computer Science, asked by mathewjustin52031, 1 year ago

Syntax to send an array as a parameter to function

Answers

Answered by laukik12
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