• 2022-06-10
    下面代码的输出结果是‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬x=10y=3print(divmod(x,y))
    A: (3,1)
    B: (1,3)
    C: 3,1
    D: 1,3