My Journey so far as a programmer!

Just wanted to write a little bit about my ongoing journey!
If there is one thing I’m starting to develop, it’s my problem solving skills. It’s (generally) been more easier for me to solve problems, because I’m thinking step by step and how to solve the problem.
Just yesterday I helped my mom create a program that filters out first names from this format (she’s a teacher!): Last Name, First Name Middle Name.
I also saw this website: https://wheelofnames.com/
And kind of recreated it using python. Here:

import random

def wheelofnames():
    names = input('Enter your names!')
    names = names.split()
    wheel = random.choice(names)
    print(f'The name chosen was {wheel}!')
wheelofnames()

Just wanted to share this, but I still have so much to learn! :smile:

3 Likes