• 2022-06-09
    执行以下代码输出的结果是(
    ) a=”Python
    is a beautiful language”
    print(a.split())
    A: Python
    is a beautiful language
    B: Python
    , is ,a, beautiful, language
    C: [‘Python’,‘is’,
    ‘a’,‘beautiful’, ‘language’]
    D: AttributeError:’int’
    object has no attribute ‘split’