#--- 1 --- x,y=map(int, raw_input().split()) if x<y: print('{:d} < {:d}'.f...
int temp; scanf("%d",&temp); a[4][3] = temp; 這是指定單一陣列位置,如果要整個陣列可能...
Fill in the blanks to print the first elements of the list, if it contains even...
Fill in the blanks to print the first elements of the list, if it contains even...
先想到的 list = [1, 2, 3, 4] s =[ x for x in list if x % 2 == 0 ] print(s[0])