Aldrine
0
Q:

how to find first value of an list

an_array = [1,2,3,4,5]
first element = an_array[0]
0
// Python
list = [1,2,3]
firstdigit = list[0] // 1 

list = ['Hello', 'bye', 'Adios']
firstvalue = list[0] // 'Hello'
0

New to Communities?

Join the community