niusouti.com
更多“Python正则表达式模块的findall方法返回结果为() ”相关问题
  • 第1题:

    假设正则表达式模块re已正确导入,那么表达式''.join(re.findall('d+', 'ab1cd7890'))的值为


    '1234'

  • 第2题:

    【单选题】下列 Python库或模块中,支持正则表达式语法的是____。

    A.bs4

    B.lxml

    C.re

    D.json


    sys

  • 第3题:

    1、re.findall函数的返回结果必然是()。

    A.列表

    B.元组

    C.字符串

    D.迭代器


    A

  • 第4题:

    假设正则表达式模块re已正确导入,那么表达式''.join(re.findall('d+', 'abcd1234'))的值为_____________________。


    '1234'

  • 第5题:

    12、下列选项中,返回结果为True的表达式是()。

    A.'Python'>'python'

    B.'Python3.7'>'Python'

    C.'Python'!='python'

    D.'C++'<'Python'


    'Python3.7'>'Python';'Python'!='python';'C++'