© 2023 Hashnode
#python-projects
A few days ago, I kicked off my Python journey with the 100 days of code challenge where I'd commit to building a project or learning python for at least one hour every day for 100 days. On day 3, I came across the "If/else" functions and I…
Recursion in Python Recursion is the process of defining something in terms of itself. Python Recursive Function In Python, we know that a function can call other functions. It is even possible for the function to call itself. These types o…
https://youtu.be/_ILOkUew3oU How did I get to know about OpenCV and mediapipe? Hey! I'm Harsh pursuing Computer Engineering. One day I saw one of my LinkedIn friend building a project on machine le…
String formatting in Python String formatting can be done in python using the format method. txt = "For only {price:.2f} dollars!" print(txt.format(price = 49)) f-strings in python It is a new string formatting mechanism introduced by the …
Manipulating Tuples Tuples are immutable, hence if you want to add, remove or change tuple items, then first you must convert the tuple to a list. Then perform operation on that list and convert it back to tuple. Example: countries = ("Spai…
{ "Deployed_Version": "https://ai-maker.vercel.app/#/auth", "Project_Frontend": "https://github.com/AI-Makers/AI-maker-web", "Project_Backend": "https://github.com/AI-Makers/Ai-Maker-FastApi" } Th…
Project: https://github.com/ThiagoKS-7/Python-Hangman2022 Hello everyone, how's it going? This time, I would like to share with you my experience taking this Python course on Alura. The main objective…
Python Tuples Tuples are ordered collection of data items. They store multiple items in a single variable. Tuple items are separated by commas and enclosed within round brackets (). Tuples are unchangeable meaning we can not alter them afte…
list.sort() This method sorts the list in ascending order. The original list is updated Example 1: colors = ["voilet", "indigo", "blue", "green"] colors.sort() print(colors) num = [4,2,5,3,6,1,2,1,2,8,9,7] num.sort() print(num) Output: ['…
WHAT IS A PASSWORD MANAGER? A password manager (or a web browser) can store all your passwords securely, so you don't have to worry about remembering them. This allows you to use unique, strong passwo…