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 Python project for other coder, but a great achievement for me. I will have one day off code to celebrate...
My simple calculator. # def calculator function def add(n1, n2): return n1 + n2 def subtract(n1, n2): return n1 - n2 def multiply(n1, n2): return n1 * n2 def divide(n1, n2): return n1 / n2 # create a dictionary contains =-*/ o...
Secret Auction code. from replit import clear # HINT: You can call clear() to clear the output in the console. bid_list = {} more_bidder = "yes" high_amount = 0 while more_bidder == "yes": name = input("What is your name?: ") amount = int(i...
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', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'a', 'b', 'c', 'd', 'e', 'f', 'g...
A small piece of code in learning #Python dictionary. order = { "starter": {1: "Salad", 2: "Soup"}, 4: {1: [1, 2], 2: ["Steak"]}, "dessert": {1: ["Ice Cream"], 2: []}, } print(order[4][1][1])
Another piece code when learning function # Review: # Create a function called greet(). def greet(name, location): # Write 3 print statements inside the function. print(f"Hello {name}!") print(f"Is {location} far?") print(f"Isn't the ...
This is a tiny project created before. # import module import random from hangman_art import logo, stages from hangman_words import word_list # print logo print(logo) # create an exit condition game_over = False # randomly choose a word from word ...
# import art and game data from art import logo, vs from game_data import data import random from replit import clear # randomly select a list from database list_B = (random.choice(data)) # function compare followers def compare(list_A_follower, ...
import random # randomly select a number in 1 ~ 100 number = random.randint(1, 100) # print(number) print("Welcome to the Number Guessing Game! \nI am thinking a number between 1 to 100.") level = input("Choose a difficulty level. Type 'easy' or 'h...
############### Blackjack Project ##################### from art import logo import random def deal_card(): cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10] return(random.choice(cards)) def calculate_score(cards): if sum(cards) > 2...