
# https://www.globalsino.com/ICs/
# Read a text file into a string variable

with open(r'C:\0Python\Feb-19-2023_WebPage.txt', 'r') as file:
    textContents = file.read().rstrip()

print("The string of 'textContents' is: \n")
print(textContents)



    
