Quick actions

cmd+k|ctrl+k

Navigation

Languages

add |id

Snippet info

Language

Python

Visibility

public

Author

fjrbgs

Created

2023-07-14T03:15:31.867625Z

Updated

2023-07-14T03:18:04.341011Z

world_list = [
    "world","world"
]
modified_list = [s + "|your id door" for s in world_list]
formatted_list = ['"' + s + '"' for s in modified_list]

# Separate into groups of 10 strings
grouped_list = [formatted_list[i:i+10] for i in range(0, len(formatted_list), 10)]

# Print the grouped list
for group in grouped_list:
    print(','.join(group))
    print()  # Add an empty line between groups
INFO