运行以下程序段后,输出结果为【 】。
a=4: b=2
Print a*(a-B)
第1题:
7、运行以下程序,输出结果为: lst1=[1,2,3,4,5] lst2=[ i>3 for i in lst1] print(lst2[2])
第2题:
以下程序运行后的输出结果是:() def func(a,b): for i in range(b): a *= 2 return a s = func(2,5) print(s)
第3题:
运行以下程序,输出结果为: lst=[1,2,3,4,5] for i in lst: i*=2 print(lst[3])
第4题:
3、运行以下程序,输出结果为: lst=[1,2,3,4,5] for i in lst: i*=2 print(lst[3])
第5题:
运行以下程序,输出结果为: lst1=[1,2,3,4,5] lst2=[ i>3 for i in lst1] print(lst2[2])