Array Creation and Return

  • Share this:

Code introduction


Create two arrays of the same element type and return them.


Technology Stack : array

Code Type : Function

Code Difficulty :


                
                    
def aaaa(arg1, arg2):
    import array
    return array.array('d', arg1), array.array('d', arg2)                
              
Tags: