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:
Answer: C. Data type
Explanation:
data types are defined as the data storage format that a variable can store a data to perform a specific operation. Data types are used to define a variable before its use in a program. Size of variable, constant and array are determined by data types.
People who connect one network to another within the company or even across organizations are boundary spanners.
People who serve as ambassadors to linking information and communications on informal networks within different department in an organisation and with other organisations or personnel far and near for the good of their organisation are called Boundary Spanners.
The importance of Boundary spanning in organisation includes
- Exchange of expertise information
- Nurturing of connections with people from different part s of the world.
- Improved innovation in businesses
See more here: brainly.com/question/14728967