Answer:
couple.py
def couple(s1,s2):
newlist = []
for i in range(len(s1)):
newlist.append([s1[i],s2[i]])
return newlist
s1=[1,2,3]
s2=[4,5,6]
print(couple(s1,s2))
enum.py
def couple(s1,s2):
newlist = []
for i in range(len(s1)):
newlist.append([s1[i],s2[i]])
return newlist
def enumerate(s,start=0):
number_Array=[ i for i in range(start,start+len(s))]
return couple(number_Array,s)
s=[6,1,'a']
print(enumerate(s))
print(enumerate('five',5))
Explanation:
<span>What is used to switch to Outline View?
the Insert tab
the status bar
the Mailings tab
the Page Layout bar</span>
Actually,
it is found in the VIEW TAB which is in the STATUS BAR. Coincidentally, all of
those tabs can be found in the status bar.
Answer:
AOL
Explanation:
Some of the standards that enable programs to receive data from and display data to a variety of mobile and desktop devices includes;
I. CSS 3: it is a framework used for providing various styles used in web design.
II. HTML 5: this is a hypertext markup language used for creating web pages or website.
III. Javascript: it is a software framework that allows software components to send and receive data through a database.
IV. Service oriented architecture (SOA): this is an architectural pattern which allows various software application components to provide specific services to other applications through a network.
All of the following standards listed above enable programs to receive data from and display data to a variety of mobile and desktop devices except AOL. AOL is an acronym for American Online and it is typically used for providing internet connection through a dial-up.