• 2022-06-09
    Python中,语句>>> [1, 2, 3] < [1, 2, 4] ,输出的结果为()。
  • True

    内容

    • 0

      下列 Python语句的程序运行结果为list1=&#91;1,2,3&#93;;list2=&#91;3,4,5&#93;;dict1={'1':list1,'2':list2};dict2=dict1.copy()dict1&#91;'1'&#93;&#91;0&#93;=15; print(dict1&#91;'1'&#93;&#91;0&#93;+dict2&#91;'1'&#93;&#91;0&#93;)

    • 1

      以下程序的输出结果是:Lis1 = &#91;1,2,&#91;‘python’&#93;&#93;Lis2 =&#91;‘ loves ’&#93;Lis1&#91; 1 &#93; = lis2print(lis1) } A: [ lis2 ,2,[ 'python'] ] B: [1,[ 'loves'], [ 'python'] ] C: [1,2, ‘python' ,’loves' ] D: [1 ,2,[ 'python' ,'loves' ]

    • 2

      设集合A={1,2,3,4}的二元关系R={&#91;1,1&#93;,&#91;2,2&#93;,&#91;3,3&#93;,&#91;4,4&#93;},S={&#91;1,3&#93;,&#91;2,4&#93;,&#91;3,1&#93;,&#91;4,2&#93;},则R°S的对称闭包= 。

    • 3

      已知列表lst = &#91; 1, 2, 'Python',(2,3)&#93;, 则表达式lst&#91; -1 &#93;&#91; -1 &#93;的值是: A: 1 B: 2 C: 'Python' D: 3

    • 4

      以下代码的显示结果是什么? data=&#91;&#91;&#91;1,2&#93;,&#91;3,4&#93;&#93;,&#91;&#91;5,6&#93;,&#91;7,8&#93;&#93;&#93; print(data&#91;1&#93;&#91;0&#93;&#91;0&#93;) A: 1 B: 2 C: 4 D: 5 E: 6