Splitting a menu item into columns.

Having a simple menu item, is it possible to fit into one row two items?


import bpy




class SimpleCustomMenu(bpy.types.Menu):
    bl_label = "Simple Custom Menu"
    bl_idname = "OBJECT_MT_simple_custom_menu"


    def draw(self, context):
        layout = self.layout


        layout.label("One")


        # Can this line contain two items?
        #row = layout.row()
        #row.label("Item 1")
        #row.label("Item 2")
        
        layout.label("Two")




def register():
    bpy.utils.register_class(SimpleCustomMenu)




def unregister():
    bpy.utils.unregister_class(SimpleCustomMenu)


if __name__ == "__main__":
    register()


    # The menu can also be called from scripts
    bpy.ops.wm.call_menu(name=SimpleCustomMenu.bl_idname)