以下代码中,a, b, c是什么参数? >>> "{a} love {b}".format(a = "I", b = "Python") 'I love Python'
举一反三
- 在下列代码中,{0},{1}是什么参数? >>> "{0} love {1}".format("I", "Python") 'I love Python'
- 在下列代码中,{0},{1}是什么参数?>;>;>; "{0} love {1}".format("I", "Python")'I love Python' A: 位置参数 B: 关键字参数 C: 默认参数 D: 可变参数
- "{a} Love {b} {c}".format(a="I", b="You", c="Python") 输出的结果是什么? A: I Love You Python B: {a}{b}{c} C: ‘I Love You Python’ D: abc
- 以下代码段的执行结果是( )。string ="i love python""".join(reversed(string.split())) A: i love python B: python love I C: nohtyp evol I D: i evol nohtyp
- 字符串 s = “I love Python”,以下程序的输出结果是: s = “I love Python” ls = ssplit() lsreverse() print(ls) A: ‘Python’, ‘love’, ‘I’ B: Python love I C: None D: [‘Python’, ‘love’, ‘I’]