#debugging
Read more stories on Hashnode
Articles with this tag
Error I was writing a code to crawl a website, and AttributeError: 'NoneType' object has no attribute 'text' occured. My Code: import requests from...
Error I was working on my mini project called Schedulize, and an error occured while loading a workbook using openpyxl. def create_excel_file(self): ...
def greet(msg="Good morning!", name): return "Hi! " + name + ', ' + msg print(greet("John")) # Syntax Error print(greet("Mary", "How do you...
Problem This article is about how I solved problem with my portfolio website’s nav bar. The nav bar should highlight a correspond section when the...