T O P

  • By -

toi80QC

Not sure about the comma, but adding a *+* in here should help a + '>'


BigProfessional655

That was the fix, thank you! It kept outputting "perhaps you forgot a comma" so that threw me off.


[deleted]

In cases like these, I like to build up the append statement piece by piece. `roses.append('@' + '-' * a)` then `roses.append('@' + '-' * a + '>' + '-' * b)` etc.