First, don't take this the wrong way but I'm assuming you're new to Python based on the code in your question: it's not valid Python. There are tons of great Python tutorials all over the place -- read up on Python functions, built-ins, and the general philosophy. It's a really powerful language, but it looks like the script you inherited is ... not very Pythonic. Be sure not to learn the wrong things about the language from it.
So, ideally you want all these variables collected in some kind of data structure. Python has a bunch of different kinds of those.
If all you need to do is compare each index in a pair of fixed sets of data, you can get away with using tuples: these are ordered, immutable collections that imply a bit of structure. Let's say you have n pairs of data: you have two tuples, let's call them c and d, but it's obviously better to use descriptive names if you can. It would look like this:
c = (c0, c1, c2, ... cn)
d = (d0, d1, d2, ... dn)
And you'd compare them with something like this:
for i in range(len(c)):
if c[i] == d[i]:
print '%d: match' % i
else:
print '%d: no match' % i
(Two notes: len() finds the length of an object, range() creates an interable sequence -- where your question used len(), you'd want to use range() in Python. Also, the %d stuff is just string formatting.)
My assumption is that you need to more than that. For one thing, if the guy who wrote this thing thought it was a good idea to store data as hundreds of unique global variables, I wouldn't assume he thought to do things like ensure each variable exists and holds data, etc. at runtime So I'd personally use a dictionary in this case, because it gives you a bit more flexibility.
Each dict is a collection of key:value pairs. Dicts are unordered, so you can't directly compare the first item in each one -- there is no first item. What you can do is use a sequence of integers as the keys, and then iterate through the range of that sequence. And you can do things like retrieve a value with a default, so you won't crash the program if c64 never got declared:
c = {0:'a', 1:'b', 2:'c', 3:'d', 4:'r'}
d = {0:'a', 1:'B', 2:None, 3:'d'}
And then something like:
for i in range(len(c)):
if c.get(i, 'No value') == d.get(i, 'No value'):
print '%d: match' % i
else:
print '%d: no match' % i
Though you'd usually retrieve data from a dict like c[4] or d['apple']. Get() lets us use a default value ('No value') in case some value of i is missing.
(Another assumption: that each pair of data represents some real data relationship, so the number of the iteration is semantically a label as much as it is an index. To my mind, keys should usually be labels rather than values themselves.)
What you've suggested in your comment, collecting the existing variables into one of these structures, would work fine. Just open up Notepad++ and do some smart search/replace with your source, should take you ten minutes. You'd end up with c = (c0, c1, c2, etc) or c = {0:c0, 1:c1, etc}, or something different if you find another structure that fits your needs. But what I really think you should do is refactor the entire script, so that the data you're comparing is stored in some kind of object that reflects what it is and how you're using it. Python will let you work real magic here: with a bit of legwork, you could be doing something as simple as c == d, finding the joint or disjoint sets of c and d, manipulating data values at certain iterations, or whatever you need.