How to remember 4 outfit choices? - Help needed

I know how to remember outfit choices using the if/elif/else method, but how do you do it when there are four outfits? Can someone please make a template? I would really appreciate it!

I think you can use elif twice in this scenario.

Hello, I know but I’m not sure how to structure it :slight_smile:

if (outfit_1) {

}

elif (outfit_2) {

}

elif (outift_3) {

}

else {

}

1 Like

Yes, you can have as many “elif” as you want, or none. Or no “else”. But you always need to have “if”.

1 Like

Thank you!

1 Like

That makes sense, thank you so much.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.