#python
Read more stories on Hashnode
Articles with this tag
Binary Search is a search technique to find elements in a collection. note: Binary search only works on sorted collections example: this's a sorted...
Should in case you want to re-use your django app in other future projects instead of rewriting the entire project, we can package the other app and...
This article is for Django junior developers that wish to do the front-end of their project themselves. let's create our project folder. Open the...
Web scraping is the process of using bots to extract content and data from a website We're going to make use of beautifulsoup, lxml and...
We're going to use tkinter and pytube for this our project Tkinter is Python's de-facto standard GUI (Graphical User Interface) package pytube is a...
import time print("You're about to vote for your future president") time.sleep(2) print("The aspirant are 'JOSEPH' & 'Chinedu'") print() #nominee...