Python OS Module Tutorial #25

Поділитися
Вставка
  • Опубліковано 20 січ 2025

КОМЕНТАРІ • 12

  • @atxvet
    @atxvet 2 роки тому +1

    Excellent video! Helpful and non-trivial examples, and lots of them. Exactly the kind of content I'm looking for. Many thanks!

  • @srikanthbadampudi3300
    @srikanthbadampudi3300 3 роки тому +1

    Like the teaching way and your explanation was simply superb Keep Doing like this Sir..

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

    Hey too gud ,,I googled lot to find a best one nd it's u🎉

  • @technicalknowledge9128
    @technicalknowledge9128 8 місяців тому +2

    Super sir

  • @evensonarisnord859
    @evensonarisnord859 2 роки тому

    A great course! It helps me in my formation

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

    Very helpfull video Thank you sir

  • @PAULTHOUGHTS-e9x
    @PAULTHOUGHTS-e9x 21 день тому +1

    🙌

  • @ratneshkutumbale2272
    @ratneshkutumbale2272 3 роки тому +1

    Hi, a very simple and informative video. As a suggestion pls could you make series over Openpyxl using juypter also. As it is very useful and no proper videos are available for that.

    • @ProgrammingIsFunn
      @ProgrammingIsFunn  3 роки тому

      Hi Ratnesh, Thanks for your comment. In future we will upload videos on openpyxl or xlwings. Meanwhile you can watch this playlist for data automation and transformation.
      ua-cam.com/play/PLWuFHho1zKhUJpe9WfSyvrrQrzqDErbmv.html

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

    import os
    for root, dir, file in os.walk(os.getcwd()):
    print(f"Path: {root}")
    print(f"Directory: {dir}")
    print(f"File: {file}")
    print(f"{root,dir,file}")