diff --git a/AI Calculator/main.py b/AI Calculator/main.py index 206ccbac54..caa1779510 100644 --- a/AI Calculator/main.py +++ b/AI Calculator/main.py @@ -1,5 +1,5 @@ from chatterbot import ChatBot - +import os # naming the ChatBot calculator # using mathematical evaluation logic # the calculator AI will not learn with the user input @@ -10,7 +10,7 @@ # clear the screen and start the calculator -print('\033c') +os.system('cls' if os.name == 'nt' else 'clear') print("Hello, I am a calculator. How may I help you?") while (True): # take the input from the user diff --git a/Medium-Scraper/README.md b/Medium-Scraper/README.md index d7b693ec93..d56566bea7 100644 --- a/Medium-Scraper/README.md +++ b/Medium-Scraper/README.md @@ -1,4 +1,4 @@ -# Medium Scrapper +# Medium Scraper Running this Script would allow the user to scrape any number of articles from [medium.com](https://medium.com/) from any category as per the user's choice ## Setup instructions @@ -28,4 +28,4 @@ The scraped pdf files get saved in the folder in which the script is run ![Files saved in folder](https://i.postimg.cc/J7DVS42k/output2.png) ## Author -[Ayush Jain](https://github.com/Ayushjain2205) \ No newline at end of file +[Ayush Jain](https://github.com/Ayushjain2205)