© 2023 Hashnode
#python-projects
Check out my previous blog about the Introduction to Django Framework. Django is a high-level web framework that is designed to make it easy to build web applications quickly and efficiently. It provi…
Hi everyone👋, In this article we will be creating a GUI ChatGPT application using Python, you can use the tkinter library for the graphical interface and the OpenAI API to interact with the ChatGPT m…
Hi everyone👋,In this article we will be creating a simple Python script that organizes files based on their extensions into separate folders: import os import shutil # Function to organize files def …
In Python, you can use nested if-else statements to create more complex decision-making logic. Nested if-else statements allow you to check multiple conditions within each other. Let's plunge into the…
#DAY 4 OF 100 DAYS OF CODING print("Welcome to your Adventure Story Simulator.") print () print("I am going to ask you a bunch of questions and then create an epic story with you as the star.") print() name = input("What is your name? ") …
Almost everyone is conversant with calculators. A calculator is a device that enables a user to perform mathematical calculations easily. It takes away the burden of having to do all mathematical calc…
Understanding Data Types and String Manipulation Today Goal: Hello and welcome to the tip calculator. How much was the whole bill? Rs. 1024.54 How many people will be splitting the bill? 5 What per…
As a college student passionate about programming and eager to learn more about Python, I recently embarked on an exciting project to create an Amazon Price Tracking System. With the help of libraries…
Managing Data using Variables in Python Create a Replit account to practice Python code. 🚀 Print function In Python, the "print" function is one of the most commonly used built-in functions. It is us…
Starting off day 3 with Control Flow with if / else and Conditional Operators. Here's the first set of code blocks I worked on. Learning how to use if / else. print("Welcome to the rollercoaster!") he…