Question
# Lab 5 2 # What will the following Program Print 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Lab 5 2 # What will the following Program Print 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 Lab5 list1 = [chr(100), Audi, FCA, General Motors, Ford, Dodge, 5 + chr (102) ] list1.sort() print(list1) flowers = [(Marigold, 5), (Tulips, 2), (Daffodils, 6), (Alstroemeria, 1) ] flowers . sort () print(flowers) x1 = 5 y1 = 5 x2 = Agapanthus y2 = Star of Bethlehem x3 = [1,2,3] y3 = [1,2,3] print(x1 is not y1) print (x2 is y2) print (x3 is y3) x = Bee Balm Flower y = {1:1,2:a} print(F in x) print(Balm not in x) print(1 in y) print(a in y) txt = Hello from the outside At least , I can say that I ve tried x = txt.startswith(outside, 17, 23) print(x is + str(x)) tuplex = 5, 10, 15, 20, 25 print ( tuplex ) tuplex = 5,15 print ( tuplex ) tup = (r, o, l, e, y, p, o,l, e, y) tup1 = .join(tup) print (tup1) tuplex = 2, 4, 5, 6, 2, 3, 4, 4, 7 print ( tuplex )
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started