Skip to main content
Image

r/learnpython


Who teaches Python the best for complete beginners?
Who teaches Python the best for complete beginners?

Hello, I’m currently learning Python from scratch and I’m looking for a good YouTube course/channel to follow.

I’m mainly looking for someone who explains things clearly and doesn’t rush through the basics. I want to actually understand Python rather than just copy code.

Who would you recommend for a complete beginner? If possible, please share the YouTube channel or specific playlist/course you learned from.

Thanks!


Advertisement: You have a great idea. We have the platform to bring it to life.
You have a great idea. We have the platform to bring it to life.
Image You have a great idea. We have the platform to bring it to life.

Redditors appreciate Shopify's platform for its robust features, ease of use, and continuous updates that enhance merchant capabilities and overall user experience.
  • Pro Tip: Use shop.app to search multiple brands/retailers at once and find some great deals
    r/frugalmalefashion • upvotes
    frugalmalefashion
  • Built with Claude in a few hours: my Shopify store is now a desk Tamagotchi. It got sick last week and my checkout was actually broken
    r/shopify • upvotes
  • Shopify dropped 5 updates in the first 3 days of April and 2 of them are actually pretty significant
    r/shopifyDev • upvotes
  • Shopify Spring 2026 dropped 150+ updates: The one that actually changes everything is products selling inside ChatGPT
    r/shopify • upvotes
  • 2 years in Dropshipping, what have I learned?!
    r/dropshipping • upvotes
  • About Redditor Highlights


    Defining and calling modules
    Defining and calling modules

    Sorry if this is a dumb question, but what am I doing wrong here?

    I have defined a function

    #statuscheck.py

    def statchk(n):

    layoutx = [[sg.Text('Debug point')],

    [sg.Output(key='-OUTPUT-', expand_x=True, expand_y=True)],

    [sg.In(key='-IN-', expand_x=True)],

    [sg.Button('Go'), sg.Button('Close')]]

    winx = sg.Window('Where I am now', layoutx, auto_close=False, grab_anywhere=True, resizable=True, location=(0,0),return_keyboard_events=True, auto_size_text=True)

    while True:

    event, values = winx.read()

    if event == sg.WIN_CLOSED:

    break

    if event == 'Go':

    print("Here at ",n)

    if event == 'Close':

    break

    I import it, but when I call it, it doesn't run, and I can't see any error messages. The call is:

    statuscheck.statchk(1)

    I know it's something simple I'm overlooking. Thanks.