如何修复我的python脚本中的意外缩进? (重复)

时间:2019-07-09 09:00:20

标签: python anaconda

收集标签的功能

固定缩进

def hashtag_extract(x):
    hashtags = []
    # Loop over the words in the tweet
    for i in x:
        ht = re.findall(r"#(\w+)", i)
        hashtags.append(ht) 
    return hashtags

0 个答案:

没有答案