It looks like alg is expected to be of type str or at least some kind of stringlike object here. There are three things being done with alg in this code that provide clues to its type:
Three clues:
1) Indexing it, e.g. referring to alg[0]. Strings, lists and tuples are all indexable in Python, though, so that doesn't narrow it down much.
2) Comparing it to a string, i.e. alg == 'R'. This only makes sense if alg is expected on at least some occasions when this function is called to be a string.
Note that points 1 and 2 still leave open the possibility that the function is sometimes expected to be called with a string, and sometimes with a list of characters. However, there's a third clue:
3) Concatenating it with strings. We have return (alg + "'") in the else block at the end. Note that there is no builtin type in Python that can be concatenated with a string that is not a string. Also note that in one of the branches of the if statement there is a string literal being explicitly returned, while in others alg is returned. This is all very strong evidence that the author of the function expected alg to always be a string.
Note that since Python is dynamically typed, theoretically there's no absolutely certain guarantee that there isn't some perverse case in which this function is used with something other than a string; passing in the list ['G'], for example, would not result in an exception. However, unless the code you're converting was written by sadistic lunatics deliberately trying to make your life difficult, for all practical purposes you can be certain here that alg is always going to be a string.
alg[0] == 'G'withalg.startswith('G')would be more readable. And then there's the cryptic namesalgandmrF, and the fact that this function's purpose is opaque and yet it is uncommented... – Mark Amery Nov 11 '12 at 15:15