Integer Array Creation Function

  • Share this:

Code introduction


This function creates an integer array using the array module and returns it.


Technology Stack : array module

Code Type : Function

Code Difficulty : Beginner


                
                    
def aaaaa(arg1, arg2, arg3):
    import array
    a = array.array('i', [arg1, arg2, arg3])
    return a                
              
Tags: