GowrinandanJ / Gowrinandana-J-

0 stars 0 forks source link

Day 6 #4

Open GowrinandanJ opened 2 days ago

GowrinandanJ commented 2 days ago

Write a python code to extent the order of list

thanseermather375 commented 1 day ago

L1=[1,2,3] L2=[4,5,6] Extended_list=L1+L2 print(Extended_list)

Misnavi commented 1 day ago

n=['hana','sona','miya'] m=['rose'] n.extend(m) print(n)

VaibhavSaji commented 21 hours ago

numbers=[10,20,30] numbers.extend([40,50,60]) print(numbers)

Muhammedaslames commented 8 hours ago

list a = [1,2,3] list b =[4,5,6] extended_list=list a +list b print(extended_list)