Anyone here familiar with pysimplegui?

I’m beating my head against my keyboard trying to do something which should be trivial, but I can’t get it to work - adding a ‘text’ element to a ‘frame’.

Whenever I do this, I get an "Your row is not an iterable (e.g a list)” error, to which I want to reply “Yes, I know you, stupid machine, I don’t want you to iterate it - just display the damn thing!”

I know nothing about that package, but have you tried putting it in a list?

What Pleonast said. Wrap the ‘text’ element in a list before passing it to the frame.

I’m very much a Python newbie. I can get stuff to work by painstakingly modifying example code.
So… how would I go about putting a string in a list?

Oh, duh.
Put it in Brackets.
Yes, that worked.
Thanks.