• 2022-06-09
    $fruit="apple" echo 'this is an $fruit.'的输出结果是( )
    A: this is an $fruit.
    B: this is an $apple.
    C: this is an apple.
    D: this is an .
  • A

    内容

    • 0

      Fruit类有Apple和Orange两个子类,Fruit fruit=new Apple(); 该语句是对象类型转换中的_______转型。

    • 1

      关于字符串常用方法的使用,有代码如下:s='Apple is my favorite fruit.'print(s.split(' '))经分析,其输出结果是( )。 A: Apple is my favorite fruit. B: 系统报错 C: ['Apple', 'is', 'my', 'favorite', 'fruit.'] D: Appleismyfavoritefruit.

    • 2

      下列对shell变量FRUIT操作,正确的是: C 。 A: 为变量赋值:$FRUIT=apple B: 显示变量的值:fruit=apple C: 显示变量的值:echo F R U I D: 判 断 变 量 是 否 有 值 : [ − f “ FRUIT D 判断变量是否有值:[ -f “FRUITD判断变量是否有值:[−f“FRUIT” ]

    • 3

      ‎以下关于Python自带数据结构的运算结果中正确的是哪一项?​ A: l = [1, 2, 3, 4, 5]; del l[2:4]; 则运算之后l为[1, 2, 3]。 B: l = [2, 1, 3, 5, 4]; l.remove(3); l.sort(); 则运算之后l为[1, 2, 4, 5]。 C: basket = ['apple', 'banana', 'apple', 'orange'] ; fruit = set(basket); len(fruit) 的运算结果是4。 D: basket = ['apple', 'banana', 'apple', 'orange'] ; fruit = set(basket); fruit2 = set(['apple', 'melo']); len(fruit | fruit2) 的结果是5。

    • 4

      程序运行结果为(______ )fruit = ['apple', 'banana', 'mango', 0]for item in fruit: if item == 0: fruit[item] = 'watermelon' elif item == 'mango': fruit[2] = 'pear'print(fruit)