
# https://www.globalsino.com/ICs/
# Read a text file into a string variable

from pathlib import Path
textContents = Path(r'C:\0Python\Feb-19-2023_WebPage.txt').read_text()
textContents = textContents.replace('\n', '')

print("The string of 'textContents' is: \n")
print(textContents)



    
