首页 试题详情
单选题

下面程序的运行结果为: def  swap(list):  temp=list[0]  list[0]=list[1]  list[1]=temp list=[1,2] swap(list) print(list)

A[1,2]

B[2,1]

C[2,2]

D[1,1]

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    请看下面一段程序def info(age,name=小明): ? print({}年龄{}.format(name,age)) info(28,小红)运行上述程序,最终输出结果( )。

    答案解析

  • 单选题

    下面程序运行结果def  swap(list):  temp=list[0]  list[0]=list[1]  list[1]=templist=[1,2]swap(list)print(list)

    答案解析

  • 单选题

    写出下面代码运行结果 ( )。def Sum(a, b=3, c=5): print(a,b,c)Sum(a=8, c=2)

    答案解析

  • 单选题

    运行下面程序,输出结果是()。Def chanageInt number2):Number2=number2+1Print (changeInt:number2=,number2)#调用Numberl=2;ChanageInt (number1)Print (number:number1)

    答案解析

  • 单选题

    以下程序运行结果(      )。N,s=1,2Def f(n):    n=n+s    return nS=3Print(f(10),n,s)

    答案解析

热门题库