A: scientific language.
B: B. idiolect.
C: colloquial language.
D: formal language.
举一反三
- The language styles taught in this module include the formal language, the ( ) language and the efficient language. A: accurate B: cautious C: repetitive D: colloquial
- The language styles taught in this module include the formal language, the ( ) language and the efficient language.
- 下面代码的输出结果是( )s="The python language is a scripting language."print(s.split(" ")) #引号之间有空格 A: The python language is a scripting language. B: ['The', 'python', 'language', 'is', 'a', 'scripting', 'language.'] C: 'The', 'python', 'language', 'is', 'a', 'scripting', 'language.' D: ['The' 'python' 'language' 'is' 'a' 'scripting' 'language.']
- 下面代码的输出结果是s = "The python language is a multimodel language."print(s.split(' ')) A: ['The', 'python', 'language', 'is', 'a', 'multimodel', 'language.'] B: Thepythonlanguageisamultimodellanguage. C: 系统报错 D: The python language is a multimodel language.
- 下面代码的输出结果是s = "The python language is a multimodel language."print(s.split(' ')) A: 系统报错 B: ['The', 'python', 'language', 'is', 'a', 'multimodel', 'language.'] C: Thepythonlanguageisamultimodellanguage. D: The python language is a multimodel language.
内容
- 0
下面代码的输出结果是( )。s = "The python language is a multimodel language.";print(s.split(' ')) A: ["The","python","language","is","a","multimodel","language."] B: The python language is a multimodel language. C: Thepythonlanguageisamultimodellanguage. D: 系统报错
- 1
下面代码的输出结果是( )。s1 = "The python language is a scripting language.";s1.replace('scripting','general');print(s1) A: The python language is a scripting language. B: ["The","python","language","is","a","scripting","language."] C: The python language is a general language. D: 系统报错
- 2
下面代码的输出结果是 s1 = "The python language is a scripting language."s1.replace('scripting','general')print(s1) A: The python language is a scripting language. B: 系统报错 C: The python language is a general language. D: ['The', 'python', 'language', 'is', 'a', 'scripting', 'language.']
- 3
下面代码的输出结果是s1 = "The python language is a scripting language."s1.replace('scripting','general')print(s1) A: The python language is a scripting language. B: ['The', 'python', 'language', 'is', 'a', 'scripting', 'language.'] C: The python language is a general language. D: 系统报错
- 4
下面代码的输出结果是( )。s1 = "The python language is a scripting language."s1 = s1.replace('scripting', 'general')print(s1) A: ['The', 'python', 'language', 'is', 'a', 'scripting', 'language.'] B: 系统报错 C: The python language is a general language. D: The python language is a scripting language.