© 2022 Hashnode
#python-projects
import random ran = random.randint(1,100) num = None c = 0 while(ran!=num): num = int(input("Guess a Number: ")) c = c + 1 if num == ran: print("Congrats, You Won!") else:…
In this tutorial we build and deploy a fitness app that sends you new workouts per email every day using Python and HarperDB. In the end, we will have a deployed cloud database and a deployed function…
In the previous post, we explored various ways to clear the Python shell. tl;dr import os os.system("clear") # Linux/Mac os.system("CLS") # For windows We have also discussed how running a 2 line program every time you want to clear the …
Hi everyone, Welcome back to my blog. In this post, I will show you how to code a very simple currency converter on python. This is another simple project on python, that could help improve your pytho…
Hi everyone, Welcome to my blog. In this post, I will show you how to code your first game on python. A simple way to improve your coding skills is by trying out new projects. There are many projects…
Introduction Hello there, This tutorial article falls under a series I will be writing on web development using python and javascript. For the next few weeks, I will be sharing articles on different…
The Engineering Career Expo (ECX) started its ECX 30 days of code and design on Tuesday, 5 April 2022 in 8 different tracks, which are; 3D modelling and animation Backend web development (Flask) Back…
Introduction In my previous post, I shared with you the simple, yet powerful approach to Data Analysis. In this article, I will be showing you a step-by-step guide through my recently concluded data a…
The word is out on Python. The simplicity, limitless range of external libraries, and committed community of Pythonistas are fundamentals of Python that even a beginner developer has probably heard be…
ECX 30 Days of Code and Design Day 10 USSD Bank Service Task Create a mock USSD service that takes users' input and provides appropriate responses. Users provide a USSD code as input Users can then c…