The goal of this project was to create a program that uses the shelf module in order for the user to be able to save copied text under a keyword, and then retrieve it by typing the keyword in the program – which then pastes the text in to the clipboard. As an an addition…
Tag: Python Basics
Regular Expression for Contact Information
This is yet another project using regular expressions that will help us find all phone numbers and emails on a page which is posted in the clipboard; the search result will be put in to the clipboard as a string. To start, we need to import the libraries that we need – in this case…
Regular Expressions – Date Detector
This python program used regular expressions to determine whether a given date is correct or not. Leap years and days in a month are calculated as well. First, we can import re, and any other library that might be useful. In order to check whether a date is correct, we need to know how many…