Python Tutorial - Python Crash Course for Beginners

Поделиться
HTML-код
  • Опубликовано: 4 сен 2022
  • Learn Python with the Python Crash Course for Beginners. In this Python tutorial we cover all the basics of the language, including variables, data types, data structures and functions. Build a CLI number guessing game in the course's final project.
    Course source code:
    github.com/jspruance/python-c...
  • НаукаНаука

Комментарии • 12

  • @islamsalah2380
    @islamsalah2380 Год назад

    Great effort, Thank u so much

  • @denberent
    @denberent Год назад +1

    I appreciate this video, got me back on track with python after a really long time!
    I'm just gonna leave my solutions to the coding challenges here:
    timeOfDay = int(input("What is the timeOfDay? "))
    if timeOfDay >= 0 and timeOfDay 5 and timeOfDay 10 and timeOfDay 16 and timeOfDay

  • @baselkelziye4552
    @baselkelziye4552 Год назад +1

    found your channel recently, i think ur smart contract contents is unique and so good. Thanks in advance and i hope you'll continue making videos about it :D

    • @BlockExplorerMedia
      @BlockExplorerMedia  Год назад +1

      Thanks a lot. Yes, I'll definitely be doing more smart contract tutorials : )

  • @sukiratwarring6219
    @sukiratwarring6219 Год назад +1

    Wohoo look who is back!

  • @cristianoronalod5117
    @cristianoronalod5117 Год назад

    Thanks bro

  • @ShayanMK
    @ShayanMK Год назад

    Do you know how to make python main.py work

    • @BlockExplorerMedia
      @BlockExplorerMedia  Год назад

      You can add a '__main__.py' file to a folder and then it will become the default script that executes when you run that folder from the cli, ex: 'python myfolder' ('__main__.py' executes). Is that what you mean? I'll add this to the next Python tutorial.