Excellent video! Helpful and non-trivial examples, and lots of them. Exactly the kind of content I'm looking for. Many thanks!
@srikanthbadampudi33003 жыл бұрын
Like the teaching way and your explanation was simply superb Keep Doing like this Sir..
@sureshgeddada6166 Жыл бұрын
Very helpfull video Thank you sir
@kavanagowda6008 Жыл бұрын
Hey too gud ,,I googled lot to find a best one nd it's u🎉
@ProgrammingIsFunn Жыл бұрын
Thank you so much and keep learning
@evensonarisnord8592 жыл бұрын
A great course! It helps me in my formation
@ratneshkutumbale22723 жыл бұрын
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.
@ProgrammingIsFunn3 жыл бұрын
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. kzbin.info/aero/PLWuFHho1zKhUJpe9WfSyvrrQrzqDErbmv
@kvelez Жыл бұрын
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}")