Quickest way to do text B1 B2 B3 etc array or copy and incremental increase as it does so?

Hi,
V5
I need te evenly place out text B1 B2 B3 etc for e.g 28 of them

What is the quickest way please ?

V5

Cheers

Steve

a phyton script or a rhinoscript would be fastest.
But you can also use
_macroeditor

copy paste

-_text "B1" 0,-8
-_text "B2" 0,-16
-_text "B3" 0,-24
-_text "B4" 0,-32
-_text "B5" 0,-40
-_text "B6" 0,-48
-_text "B7" 0,-56
-_text "B8" 0,-64
-_text "B9" 0,-72
-_text "B10" 0,-80
-_text "B11" 0,-88
-_text "B12" 0,-96
-_text "B13" 0,-104
-_text "B14" 0,-112
-_text "B15" 0,-120
-_text "B16" 0,-128
-_text "B17" 0,-136
-_text "B18" 0,-144
-_text "B19" 0,-152
-_text "B20" 0,-160
-_text "B21" 0,-168
-_text "B22" 0,-176
-_text "B23" 0,-184
-_text "B24" 0,-192
-_text "B25" 0,-200
-_text "B26" 0,-208
-_text "B27" 0,-216
-_text "B28" 0,-224

press the play button

Hi,
Thanks.
I dare not try that tonight as I am clock racing now, Phyton script a new one on me.

Cheers
Steve

above is not a phyton script - it is just commandline
(Quickest way - as you ask - my interpretation: for a not-programmer)