#python3
Read more stories on Hashnode
Articles with this tag
Exploration of Linear Unit ยท A formula y=wx+b A linear unit with three inputs. The formula for this neuron would be y=w0x0+w1x1+w2x2+b . A linear unit...
def newPrint(color, word): if color=="red": print("\033[31m", word, sep="", end="") elif color=="green": print("\033[32m", word, sep="",...
import random, os, time def rollDice(side): result = random.randint(1,side) return result def health(): healthStat =...
#DAY 23 100Dya of Python print ("WELCOME TO THE TEST SYSTEM") def login_details(): while True: username = input("What is your name? ") ...
#DAY 13 Of 100Days od code print ("EXAM GRADE CALCULATOR") print() student = input("what is your name: ") subject = input("what subject exams did...
##DAY 9 100DAYS OF PYTHON print("GENERATION GENERATOR") Age = int(input("what year were you born? ")) if Age >= 1925 and Age <= 1946: print ("You...