You can download this code by clicking the button below.
This code is now available for download.
Create an integer array and initialize it with two passed arguments.
Technology Stack : array
Code Type : Function
Code Difficulty : Beginner
def aaaaaa(arg1, arg2):
import array
arr = array.array('i', [arg1, arg2])
return arr