If you had to design a list named “trees” that contains the…

Question Answered step-by-step If you had to design a list named “trees” that contains the… If you had to design a list named “trees” that contains the elements “oil”, “maple”, and “fir”Use the following python script: trees = [“oak”,”maple”,”fir”] The accurate python syntax to make a new list named “deciduousTrees” that contains the elements that contain the elements “oak” and “maple” are : deciduousTrees = trees[0:3]deciduousTrees  = trees[1:2]deciduousTrees  = trees[0:2]deciduousTrees  = trees[1:3] Computer Science Engineering & Technology Python Programming CS 6360 Share QuestionEmailCopy link Comments (0)