• 2022-06-16
    A0 = {'a' : 1, 'b' : 3, 'c' : 2, 'd' : 5, 'e' : 4} A1 ={i : A0.get(i)*A0.get(i) for i in A0.keys()} print(A1)
  • {'a':1,'b':9,'c':4,'d':25,'e':16}

    内容

    • 0

      1/5 下列代码的运行结果是?for i in range(3):print('i') A: i i i B: 0 1 2 C: 1 2 3 D: 3 3 3

    • 1

      有以下程序,运行结果是()。 main() {     int s[12]={1, 2, 3, 4, 4, 3, 2, 1, 1, 1, 2, 3}, c[5]={0}, i;    for(i=0; i<12; i++)        c[s[i]]++;     for(i=1; i<5; i++)        printf("%d", c[i]);    printf("\n"); }

    • 2

      下列程序的执行结果是______。 class A1 implements Runnable { public void run() { for(iht i = 0; i < 10; i++) { System.out.println("i =" + i); if(i == 3) break; } } } public class ex38 { public static void main(String&#91;&#93; args) { Thread th1 = new Thread(new A1()); th1.start (); } } A: i=1 i=2 i=3 i=4 B: i=1 i=1 i=1 i=1 C: i=0 i=1 i=2 i=3 D: i=1 i=2 i=3

    • 3

      执行以下语句,输出结果是() i = -2 while i<0: i*=i print(i) A: 报错 B: 0 C: -1 D: 4

    • 4

      下列代码段执行后的结果是()int&#91;&#93; a = { 1, 3, 5, 2, 4 };int j = 4;for (int i = 0; i <; 5; i++) { a[i] = a&#91;j&#93;; j--;}for (int i = 0; i <; 5; i++) System.out.print(a[i] + " ");[/i][/i] A: 1 2 3 4 5 B: 5 4 3 2 1 C: 4 2 5 2 4 D: 4 2 5 3 1