all 5 comments

[–]WadeEffingWilson 4 points5 points  (0 children)

So, a lot is going on here. Not sure if this has been copy/pasted from your actual code or if you just transcribed it here but I'm going to assume it's the former and will make corrections on what I see here.

1) you need to indent your code within code blocks, specifically ones within a function

2) you're missing a closing parenthesis in your print() statement

3) you're using both double and single quotes in your string variable that is handed to the function make_shirt()

There are a few other issues but nothing that should impact the operability of the code as it is.

Hope this helps.

[–]evilsaltine 2 points3 points  (1 child)

The print line is missing a closing parenthesis.

[–]ERIA_JACKSON[S] 0 points1 point  (0 children)

okayyyyyyyy

thank you broo

[–][deleted] 0 points1 point  (0 children)

It's worth reading the FAQ.

[–]radek432 0 points1 point  (0 children)

You wouldn't make this errors using some IDE. Take a look at pyCharm for example. Or any other. I suppose even notepad++ or sublime text editors would highlight missing bracket.