What can be inferred from Paragraph 3?
A.Body language is uniqun to humans.
B.Animals express emotions just as humans do.
C.Humans have other poeers of communication.
D.Humans are thfferent from animals to some degree.
第1题:
第2题:
以下对于列表的相关操作中哪些项有正确的输出结果?
A.>>> language = list('PHP'); >>> language[1:] = 'ython'; >>> print(language) ['P', 'y', 't', 'h', 'o', 'n']#B.>>> print(list('Life is short, you need Python.').count('is')) 1#C.>>> x = [2, 3, 0, 4, 1] >>> x.sort() >>> print(x) [0, 1, 2, 3, 4]#D.>>> words = ['Life', 'is', 'short', 'you', 'need', 'Python'] >>> words.index('you') 4第3题:
Paragraph 3 ()
第4题:
第5题:
一下数组的定义正确的是()
A.int a[];
B.int a[3][] = {1,3,4};
C.int a[]={1,2,3};
D.char s[] = "language";
E.char s[8] = "language";
第6题:
Paragraph 3 __________