Answers for "how to append to a array in python"

0

append element an array in python

my_input = ['Engineering', 'Medical'] 
my_input.append('Science') 
print(my_input)
Posted by: Guest on March-10-2021
0

how to add array and array in python

capitals = ['A', 'B', 'C']
lowers = ['a', 'b', 'c']

alphabets = capitals + lowers
Posted by: Guest on August-19-2021

Code answers related to "how to append to a array in python"

Python Answers by Framework

Browse Popular Code Answers by Language