print("Enter number of columns:",end=" ")
cols=int(input())
print(cols)
print("Enter number of rows:",end=" ")
rows=int(input())
print(rows)
print("")
side="right"0
print("[5][5] is cleaned")
for i in range(rows):
if side=="left":
    for j in range(1,cols):
        print("Move forward")
        print("[{i}][{j}] is cleaned".format(i=i,j=j))
else:
    for j in range(cols-2,-1,-1):
        print("Move forward")

        print("[{i}][{j}] is cleaned".format(i=i,j=j))
if(i!=rows-1):
    if side=="left":
        print("Turn right")
        print("[{i}][{j}] is cleaned".format(i=i+1,j=cols-1))
        side="right"
else:
    print("Turn left")
    print("[{i}][{j}] is cleaned".format(i=i+1,j=0))
    side="left"

I see line 1 should be easy enough. Are you stopped there or somewhere else?

In other words, convert it line by line. Or understand what the program does and create it anew.

Lastly, did you research this to see if online conversion works for you?
-> RESEARCH? See https://www.google.com/search?&q=online+python+to+c+code+converter

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.