更多“As water gets colder, its temperature drops lower and lower, until it begins to freez ”相关问题
  • 第1题:

    The revision date of a chart is printed on which area of the chart?

    A.Top center

    B.Lower-left corner

    C.Part of the chart title

    D.Any clear area around the neat line


    正确答案:B

  • 第2题:

    4、已知a='pYthon',下面哪条语句可以令b为第一个字母大写的字符串'Python'。

    A.b=a.lower()

    B.b=a.upper()

    C.b=a[0].upper()+a[1:].lower()

    D.b=a[1].upper()+a[2:].lower()


    B

  • 第3题:

    给出如下代码,可以输出"python"的是 s = 'Python is beautiful!'

    A.print(s[0:7])

    B.print(s[:-14])

    C.print(s[-21:-14].lower)

    D.print(s[0:6].lower())


    B

  • 第4题:

    第49题答案是__________

    A.poorer
    B.weaker
    C.worse
    D.lower

    答案:D
    解析:
    职位一般论的是高、低。故选D。

  • 第5题:

    已知a='pYthon',下面哪条语句可以令b为第一个字母大写的字符串'Python'。

    A.b=a.lower()

    B.b=a.upper()

    C.b=a[0].upper()+a[1:].lower()

    D.b=a[1].upper()+a[2:].lower()


    print(a)

  • 第6题:

    字符串的lower()方法,返回字符串的副本,全部为小写字符。


    A