You can download this code by clicking the button below.
This code is now available for download.
Create an array containing two integers.
Technology Stack : array
Code Type : Function
Code Difficulty : Beginner
def aaaa(arg1, arg2):
import array
a = array.array('i', [arg1, arg2])
return a