#python
Read more stories on Hashnode
Articles with this tag
Hey everyone, I wanted to take a moment to share where I am in my data science journey because, honestly, it's been a bit of a rough patch. I haven't...
Here's to a new community to grow Techpreneurs within CTCA-Abuja. The Tech hub is a dynamic meeting ground for tech enthusiasts from all walks of...
import pandas as pd import csv data = { "Name": ["Alex", "Samantha", "Michael", "Emily", "Jacob", "Sophia", "William", "Ava", "Ethan", "Isabella",...
def newPrint(color, word): if color=="red": print("\033[31m", word, sep="", end="") elif color=="green": print("\033[32m", word, sep="",...
#DAY 25 100Days of python import random def rollDice(sides): result = random.randint(1,sides) return result def roll_6_and_8(): ...
print(" WELCOME TO THE DICE GAME, LET'S ROLL!!!!!") import random sides = int (input("How Many sides?: ")) play = "yes" def main (roll): print("You...