下面Python代码中的 dictA 存储为字典,key(键)为i和j的组合,value(值)为i*j,形如 {(1,1):1,(1,2):2} ,横线处应填上代码是( )。
dict99[(i, j)]
dict99[[i, j]]
dict99(i, j)
dict99{i, j}