Codes pass in how?

is there a way to pass code lines in this forum ?

thanks
happy bl

Are you asking how to post code on forum? Why did you post in the python section?

Two ways that I know of.

1: put your code between [code] [/code ]. Without the space that I put between the e and ].
2: use the key that looks like a backwards apostrophe(in front of #1 on keyboard). I think you place three of them before and after your code.

in old forum there was like an icon on header
is there one now in this new forum ?

there is blockquote and preformatted text may be ?

thanks
happy bl

for all_objects in bpy.context.scene.objects:
    if all_objects.type == 'MESH':
        all_objects_verts = len(all_objects.data.vertices)           
        if all_objects_verts == active_verts:
            all_objects.select = True

I think the prefromated text icon seems to work

thanks
happy bl

Yeah, that also works too. I think the other ways just gives more color to it.