Python Tutorial - Python Crash Course for Beginners

Поділитися
Вставка
  • Опубліковано 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 : )

  • @cristianoronalod5117
    @cristianoronalod5117 Рік тому

    Thanks bro

  • @sukiratwarring6219
    @sukiratwarring6219 Рік тому +1

    Wohoo look who is back!

  • @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.