I am just started learning web scraping using python Beautifulsoup and requests library and using Pycharm tool.
import requests
from bs4 import BeautifulSoup
result1 = requests.get("https://www.grainger.com/")
print('result1 is '+ str(result1.status_code))
While I am using this website its keeps on loading and if I use google.com it's giving output.
I wonder why I didn't get output for the above website?