use delimeter in cpp code example
Example 1: how to use def in python
def functionName(variable):
//function content
Example 2: how to use enumerate in python
l1 = ["eat","sleep","repeat"]
# printing the tuples in object directly
for ele in enumerate(l1):
print ele
print
# changing index and printing separately
for count,ele in enumerate(l1,100):
print count,ele