江南有佳丽 生于帝王州 繁花未曾见 王谢纸上闻
茕茕影孑立 烟雨两凄迷 凭栏望楼台 四百寺安在
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"]}, ...
Another piece code when learning function # Review: # Create a function called greet(). def greet(name, location): # Write 3 print statements...