necolewiggins33201 necolewiggins33201 01-04-2024 Computers and Technology contestada Select all the correct options to join two lists in Python (more than one answer) listone = ['a', 'b', 'c', 'd'] listtwo = ['e', 'f', 'g'] a) listone.extend(listtwo) b) listone + listtwo c) listone.append(listtwo) d) listone += listtwo