简体   繁体   中英

Why won't my python program print the list?

import praw
import time
from selenium import webdriver

driver = webdriver.Chrome()

r = praw.Reddit(client_id='XXXXXXXXXX',
                     client_secret='XXXXXXXXXXXXX', password='XXXXXXXXX',
                     user_agent='Grand Street Tech', username='grandstreetsupreme')
subreddit = r.subreddit('supremeclothing')
submissions = []
users = []
for submission in r.subreddit('supremeclothing').new(limit=999):
    for comment in submission.comments:
        author = comment.author
        users.append(author)

It takes like 10 minutes to complete and when it does it doesn't do anything.

没有用户正确的打印语句,请输入如下语句。

print users

This is because you just created the list users , you need to tell python to print it.

After your for loop, put print users

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM