#python
Read more stories on Hashnode
Articles with this tag
I can't remember it's Day 13 or 14 or even 15 of #KeepCoding100Days today. But I finally complete the code of Coffer Machine project. 😎 A small...
My simple calculator. # def calculator function def add(n1, n2): return n1 + n2 def subtract(n1, n2): return n1 - n2 def multiply(n1,...
Secret Auction code. from replit import clear # HINT: You can call clear() to clear the output in the console. bid_list = {} more_bidder =...
Here is my Caesar Cipher code. I did this about 8 months ago :) alphabet = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',...
A small piece of code in learning #Python dictionary. order = { "starter": {1: "Salad", 2: "Soup"}, 4: {1: [1, 2], 2: ["Steak"]}, ...
This is a tiny project created before. # import module import random from hangman_art import logo, stages from hangman_words import word_list # print...