You can download this code by clicking the button below.
This code is now available for download.
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