▲ 1 r/cs50

Worst possible answer to: Problem set 4 "Adieu, Adieu"

I had a bit of a laugh making this one I can't lie. Got the idea and had to run with it.

So bad, but it works:

import sys


def main():
    names =[]
    while True:
        try:
            name = input("Name: ").strip().capitalize()
            names.append(name)
    ## End with
        except EOFError:
            n = len(names)
            if n < 2:
                print(f"\nAdieu, adieu, to {names.pop()}")
                return
            else:
                end = names.pop()
                if len(names) > 1:
                    comma_check = True
                else:
                    comma_check = False
                rest = str(names).strip("[").strip("]")
                dump = ""
                for letters in range(len(rest)):
                    if rest[letters] != "'":
                        dump += rest[letters]
                    else:
                        pass
                if comma_check == True:
                    dump += ","
            print(f"\nAdieu, adieu, to {dump} and {str(end)}")
            return


main()
reddit.com
u/Askingquestions2020 — 27 days ago
▲ 18 r/valheim

Valheim x Paralives appreciation post!

There's a lot of Valheim Easter eggs in here, not just a style. Let me know what you see and if this suits this Subreddit.

u/Askingquestions2020 — 2 months ago

Valheim x Paralives

Go easy, it's genuinely my first Paralives build.

May make a video, or a part two. Reddit has a 20 picture limit, so I had to cut a lot details and Easter eggs!

Let me know what you guys spot though.

u/Askingquestions2020 — 2 months ago

Does this feel like a consistent enough Artstyle?

There are Two Cards here: The King's Castle and The Wizard's Tower

Cards will have Day and Night Phases. Ive not completed the King's Castle Night Phase yet.

Theyre still a bit unpolished for the first draft.

u/Askingquestions2020 — 3 months ago

This is the Wizard's Tower card.

Cards will have Day and Night Phases in my game, I have left room possibly for text. However, I actually like this minimalist design.

What are people's thoughts on this artstyle?

u/Askingquestions2020 — 4 months ago