what is an ideal variable naming convention for loop variables? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T03:56:35Z http://stackoverflow.com/feeds/question/101070 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables 19 what is an ideal variable naming convention for loop variables? just mike 2008-09-19T10:55:32Z 2009-04-06T21:48:29Z <p>if you are writing a <em>simple</em> little loop, what <em>should</em> you name the counter?</p> <p><em>provide example loops!</em></p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101071#101071 6 Answer by just mike for what is an ideal variable naming convention for loop variables? just mike 2008-09-19T10:55:41Z 2008-09-21T01:19:25Z <p>my experience is that most people use single letters, e.g.: <code>i</code>, <code>j</code>, <code>k</code>, ... or <code>x</code>, <code>y</code>, or <code>r</code>, <code>c</code> (for row/column) or <code>w</code>, <code>h</code> (for width/height) , etc.</p> <p>but i learned a great alternative a long time ago, and have used it ever since: double letter variables.</p> <pre><code>// recommended style &#9679; // "typical" single-letter style &#9679; for (ii=0; ii&lt;10; ++ii) { &#9679; for (i=0; i&lt;10; ++i) { for (jj=0; jj&lt;10; ++jj) { &#9679; for (j=0; j&lt;10; ++j) { mm[ii][jj] = ii * jj; &#9679; m[i][j] = i * j; } &#9679; } } &#9679; }</code></pre> <p>in case the benefit isn't immediately obvious: searching through code for any single letter will find many things that <em>aren't</em> what you're looking for. the letter <code>i</code> occurs quite often in code where it isn't the variable you're looking for.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101095#101095 6 Answer by Nescio for what is an ideal variable naming convention for loop variables? Nescio 2008-09-19T10:59:51Z 2008-09-19T12:24:42Z <p>Always try to name the variable something meaningful and in context.</p> <p>If you cannot decide, then use "index", if only so that someone else (maybe you!) can more easily click on it for refactoring later.</p> <p><a href="http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables#101239">Paul Stephenson</a> See this answer for an example.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101097#101097 4 Answer by Vaibhav for what is an ideal variable naming convention for loop variables? Vaibhav 2008-09-19T11:00:31Z 2008-09-19T11:00:31Z <p>I use single letters only when the loop counter is an index. I like the thinking behind the double letter, but it makes the code quite unreadable.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101098#101098 0 Answer by Kent Fredric for what is an ideal variable naming convention for loop variables? Kent Fredric 2008-09-19T11:00:50Z 2008-09-19T11:00:50Z <p>I've started using perlisms in php. </p> <p>if its a singular iteration, <code>$_</code> is a good name for those who know its use.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101112#101112 0 Answer by Simon Munro for what is an ideal variable naming convention for loop variables? Simon Munro 2008-09-19T11:04:56Z 2008-09-19T11:04:56Z <p>My habit is to use 't' - close to 'r' so it follows easily aftewr typing 'for'</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101113#101113 3 Answer by AnthonyWJones for what is an ideal variable naming convention for loop variables? AnthonyWJones 2008-09-19T11:05:12Z 2008-09-19T11:05:12Z <p><code>i</code></p> <p>if I have a nested loop then also <code>j</code>.</p> <p>This convention is so common that if you manage to come across a variable <code>i</code> in a block of code that you can't see the start of you still instantly recognise it for what it is. </p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101114#101114 24 Answer by m_pGladiator for what is an ideal variable naming convention for loop variables? m_pGladiator 2008-09-19T11:06:08Z 2008-09-19T12:59:30Z <p>1) For normal old style small loops - i, j, k - If you need more than 3 level nested loops, this means that either the algorithm is very specific and complex, either you should consider refactoring the code.</p> <p>Java Example:</p> <pre><code>for(int i = 0; i &lt; ElementsList.size(); i++) { Element element = ElementsList.get(i); someProcessing(element); .... } </code></pre> <p>2) For the new style java loops like <code>for(Element element: ElementsList)</code> it is better to use normal meanigful name</p> <p>Java Example:</p> <pre><code>for(Element element: ElementsList) { someProcessing(element); .... } </code></pre> <p>3) If it is possible with the language you use, convert the loop to use iterator</p> <p>Java Iterator Example: <a href="http://www.javadeveloper.co.in/java-example/java-iterator-example.html" rel="nofollow">click here</a></p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101181#101181 0 Answer by Emile for what is an ideal variable naming convention for loop variables? Emile 2008-09-19T11:25:01Z 2008-09-19T11:25:01Z <p>Like a previous poster, I also use ii, jj,.. mainly because in many fonts a single i looks very similar to 1.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101220#101220 2 Answer by Jez for what is an ideal variable naming convention for loop variables? Jez 2008-09-19T11:34:25Z 2008-09-19T11:34:25Z <p>If the counter is to be used as an index to a container, I use <code>i</code>, <code>j</code>, <code>k</code>.</p> <p>If it is to be used to iterate over a range (or perform a set number of iterations), I often use <code>n</code>. Though, if nesting is required I'll usually revert to <code>i</code>, <code>j</code>, <code>k</code>.</p> <p>In languages which provide a <code>foreach</code>-style construct, I usually write like this:</p> <pre><code>foreach widget in widgets do foo(widget) end </code></pre> <p>I think some people will tell me off for naming <code>widget</code> so similarly to <code>widgets</code>, but I find it quite readable.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101234#101234 1 Answer by Learning for what is an ideal variable naming convention for loop variables? Learning 2008-09-19T11:37:30Z 2008-09-19T11:37:30Z <p>I use "counter" or "loop" as the variable name. Modern IDEs usually do the word completion , so longer variable names are not as tedious to use. Besides , to name the variable to its functionality makes it clear to the programmer who is going to maintain your code as to what your intentions were.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101239#101239 18 Answer by Paul Stephenson for what is an ideal variable naming convention for loop variables? Paul Stephenson 2008-09-19T11:38:33Z 2009-01-20T11:15:46Z <p>I always use a <strong>meaningful name</strong> unless it's a single-level loop and the variable has no meaning other than "the number of times I've been through this loop", in which case I use <code>i</code>.</p> <p>When using meaningful names:</p> <ul> <li>the code is more understandable to colleagues reading your code,</li> <li>it's easier to find bugs in the loop logic, and</li> <li>text searches for the variable name to return relevant pieces of code operating on the same data are more reliable.</li> </ul> <h2>Example - spot the bug</h2> <p>It can be tricky to find the bug in this nested loop using single letters:</p> <pre><code>int values[MAX_ROWS][MAX_COLS]; int sum_of_all_values() { int i, j, total; total = 0; for (i = 0; i &lt; MAX_COLS; i++) for (j = 0; j &lt; MAX_ROWS; j++) total += values[i][j]; return total; } </code></pre> <p>whereas it is easier when using meaningful names:</p> <pre><code>int values[MAX_ROWS][MAX_COLS]; int sum_of_all_values() { int row_num, col_num, total; total = 0; for (row_num = 0; row_num &lt; MAX_COLS; row_num++) for (col_num = 0; col_num &lt; MAX_ROWS; col_num++) total += values[row_num][col_num]; return total; } </code></pre> <h3>Why <code>row_num</code>? - rejected alternatives</h3> <p>In response to some other answers and comments, these are some alternative suggestions to using <code>row_num</code> and <code>col_num</code> and why I choose not to use them:</p> <ul> <li><strong><code>r</code></strong> and <strong><code>c</code></strong>: This is slightly better than <code>i</code> and <code>j</code>. I would only consider using them if my organisation's standard were for single-letter variables to be integers, and also always to be the first letter of the equivalent descriptive name. The system would fall down if I had two variables in the function whose name began with "r", and readability would suffer even if other objects beginning with "r" appeared anywhere in the code.</li> <li><strong><code>rr</code></strong> and <strong><code>cc</code></strong>: This looks weird to me, but I'm not used to a double-letter loop variable style. If it were the standard in my organisation then I imagine it would be slightly better than <code>r</code> and <code>c</code>.</li> <li><strong><code>row</code></strong> and <strong><code>col</code></strong>: At first glance this seems more succinct than <code>row_num</code> and <code>col_num</code>, and just as descriptive. However, I would expect bare nouns like "row" and "column" to refer to structures, objects or pointers to these. If <code>row</code> could mean <em>either</em> the row structure itself, <em>or</em> a row number, then confusion will result.</li> <li><strong><code>iRow</code></strong> and <strong><code>iCol</code></strong>: This conveys extra information, since <code>i</code> can mean it's a loop counter while <code>Row</code> and <code>Col</code> tell you what it's counting. However, I prefer to be able to read the code almost in English: <ul> <li><code>row_num &lt; MAX_COLS</code> reads as "the <strong>row num</strong>ber is <strong>less than</strong> the <strong>max</strong>imum (number of) <strong>col</strong>umn<b>s</b>";</li> <li><code>iRow &lt; MAX_COLS</code> at best reads as "the <strong>integer loop counter</strong> for the <strong>row</strong> is <strong>less than</strong> the <strong>max</strong>imum (number of) <strong>col</strong>umn<b>s</b>".</li> <li>It may be a personal thing but I prefer the first reading.</li> </ul></li> </ul> <p>An alternative to <code>row_num</code> I would accept is <code>row_idx</code>: the word "index" uniquely refers to an array position, unless the application's domain is in database engine design, financial markets or similar.</p> <p>My example above is as small as I could make it, and as such some people might not see the point in naming the variables descriptively since they can hold the whole function in their head in one go. In real code, however, the functions would be larger, and the logic more complex, so decent names become more important to aid readability and to avoid bugs.</p> <p>In summary, my aim with all variable naming (not just loops) is to be <strong>completely unambiguous</strong>. If <em>anybody</em> reads any portion of my code and can't work out what a variable is for immediately, then I have failed.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101457#101457 0 Answer by Karthi for what is an ideal variable naming convention for loop variables? Karthi 2008-09-19T12:33:34Z 2008-09-19T12:33:34Z <p>If it is a simple counter, I stick to using 'i' otherwise, have name that denotes the context. I tend to keep the variable length to 4. This is mainly from code reading point of view, writing is doesn't count as we have auto complete feature.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101643#101643 1 Answer by Davy Landman for what is an ideal variable naming convention for loop variables? Davy Landman 2008-09-19T13:00:05Z 2008-10-01T08:25:53Z <p>I have long used the i/j/k naming scheme. But recently I've started to adapt a more consequent naming method.</p> <p>I allready named all my variables by its meaning, so why not name the loop variable in the same deterministic way. </p> <p>As requested a few examples:</p> <p>If you need to loop trough a item collection.</p> <pre><code>for (int currentItemIndex = 0; currentItemIndex &lt; list.Length; currentItemIndex++) { ... } </code></pre> <p>But i try to avoid the normal for loops, because I tend to want the real item in the list and use that, not the actual position in the list. so instead of beginning the for block with a:</p> <pre><code>Item currentItem = list[currentItemIndex]; </code></pre> <p>I try to use the foreach construct of the language. which transforms the.</p> <pre><code>for (int currentItemIndex = 0; currentItemIndex &lt; list.Length; currentItemIndex++) { Item currentItem = list[currentItemIndex]; ... } </code></pre> <p>into</p> <pre><code>foreach (Item currentItem in list) { ... } </code></pre> <p>Which makes it easier to read because only the real meaning of the code is expressed (process the items in the list) and not the way we want to process the items (keep an index of the current item en increase it until it reaches the length of the list and thereby meaning the end of the item collection).</p> <p>The only time I still use one letter variables is when I'm looping trough dimensions. But then I will use x, y and sometimes z.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101644#101644 8 Answer by _ande_turner_ for what is an ideal variable naming convention for loop variables? _ande_turner_ 2008-09-19T13:00:13Z 2008-09-27T01:41:12Z <h1>Examples: <em>. . . In Java</em></h1> <p><br></p> <h2>Non-Iterative Loops:</h2> <p><br> <strong>Non-Nested Loops:</strong> . . . The Index is a value.</p> <blockquote> <p>. . . <em>using</em> <code>i</code>, <em>as you would in Algebra, is the most common practise</em> . . .</p> </blockquote> <pre><code>for ( int i = 0; i &lt; LOOP_LENGTH; i++ ) { // LOOP_BODY } </code></pre> <p><br> <strong>Nested Loops:</strong> . . . Differentiating Indices lends to comprehension.</p> <blockquote> <p>. . . <em>using a descriptive suffix</em> . . .</p> </blockquote> <pre><code>for ( int iRow = 0; iRow &lt; ROWS; iRow++ ) { for ( int iColumn = 0; iColumn &lt; COLUMNS; iColumn++ ) { // LOOP_BODY } } </code></pre> <p><br> <strong><code>foreach</code> Loops:</strong> . . . An <code>Object</code> needs a name. </p> <blockquote> <p><em>. . . using a descriptive name . . .</em></p> </blockquote> <pre><code>for ( Object something : somethings ) { // LOOP_BODY } </code></pre> <p><br></p> <h2>Iterative Loops:</h2> <p><br> <strong><code>for</code> Loops:</strong> . . . Iterators reference Objects. An Iterator it is neither; an Index, nor an Indice.</p> <blockquote> <p>. . . <code>iter</code> <em>abreviates an Iterators purpose</em> . . .</p> </blockquote> <pre><code>for ( Iterator iter = collection.iterator(); iter.hasNext(); /* N/A */ ) { Object object = iter.next(); // LOOP_BODY } </code></pre> <p><br> <strong><code>while</code> Loops:</strong> . . . Limit the scope of the Iterator.</p> <blockquote> <p>. . . <em>commenting on the loops purpose</em> . . .</p> </blockquote> <pre><code>/* LOOP_DESCRIPTION */ { Iterator iter = collection.iterator(); while ( iter.hasNext() ) { // LOOP_BODY } } </code></pre> <blockquote> <p><em>This last example reads badly without comments, thereby encouraging them.</em> <em>It's verbose perhaps, but useful in scope limiting loops in C.</em></p> </blockquote> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/104673#104673 0 Answer by Jon Ericson for what is an ideal variable naming convention for loop variables? Jon Ericson 2008-09-19T19:13:11Z 2008-09-19T19:13:11Z <h1>Perl standard</h1> <p>In Perl, the standard variable name for an inner loop is <strong>$_</strong>. The <strong>for</strong>, <strong>foreach</strong>, and <strong>while</strong> statements default to this variable, so you don't need to declare it. Usually, <strong>$_</strong> may be read like the neuter generic pronoun "it". So a fairly standard loop might look like:</p> <pre><code>foreach (@item){ $item_count{$_}++; } </code></pre> <p>In English, that translates to:</p> <blockquote> <p>For each item, increment it's item_count.</p> </blockquote> <p>Even more common, however, is to not use a variable at all. Many Perl functions and operators default to <strong>$_</strong>:</p> <pre><code>for (@item){ print; } </code></pre> <p>In English:</p> <blockquote> <p>For [each] item, print [it].</p> </blockquote> <p>This also is the standard for counters. (But counters are used far less often in Perl than in other languages such as C). So to print the squares of integers from 1 to 100:</p> <pre><code>for (1..100){ print "$_*$_\n"; } </code></pre> <p>Since only one loop can use the <strong>$_</strong> variable, usually it's used in the inner-most loop. This usage matches the way English usually works:</p> <blockquote> <p>For each car, look at each tire and check it's pressure.</p> </blockquote> <p>In Perl:</p> <pre><code>foreach $car (@cars){ for (@{$car-&gt;{tires}}){ check_pressure($_); } } </code></pre> <p>As above, it's best to use longer, descriptive names in outer loops, since it can be hard to remember in a long block of code what a generic loop variable name really means. </p> <p>Occasionally, it makes sense to use shorter, non-descriptive, generic names such as <strong>$i</strong>, <strong>$j</strong>, and <strong>$k</strong>, rather than <strong>$_</strong> or a descriptive name. For instance, it's useful to match the variables use in a published algorithm, such as <a href="http://en.wikipedia.org/wiki/Cross_product" rel="nofollow">cross product</a>.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/106074#106074 0 Answer by _ande_turner_ for what is an ideal variable naming convention for loop variables? _ande_turner_ 2008-09-19T22:14:18Z 2008-09-20T05:10:19Z <p>@JustMike . . . <strong>A FEW C EXAMPLES:</strong> . . . to accompany the Java ones.<br><br></p> <p><strong>NON-NESTED loop:</strong> . . . limiting scope where possible </p> <pre><code>/*LOOP_DESCRIPTION*/ { int i; for (i = 0; i &lt; LOOP_LENGTH; i++) { // loop body } } </code></pre> <p><br> <strong>NESTED loop:</strong> . . . ditto</p> <pre><code>/*LOOP_DESCRIPTION*/ { int row, column; for (row = 0; row &lt; ROWS; row++) { for (column = 0; column &lt; COLUMNS; column++) { // loop body } } } </code></pre> <p>One good thing about this layout is it reads badly without comments, thereby encouraging them.<br>It's verbose perhaps, but personally this is how I do loops in C. <br><br> Also: <em>I did use "index" and "idx" when I started, but this usually got changed to "i" by my peers.</em></p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/106346#106346 1 Answer by Oddmund for what is an ideal variable naming convention for loop variables? Oddmund 2008-09-19T23:19:46Z 2008-09-19T23:19:46Z <p>I use i, ii, iii, iv, v ... Never got higher than iii, though.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/106541#106541 1 Answer by Tim Ottinger for what is an ideal variable naming convention for loop variables? Tim Ottinger 2008-09-20T00:21:15Z 2008-09-20T00:21:15Z <p>The first rule is that the length of the variable name should match the scope of the variable. The second rule is that meaningful names make bugs more shallow. The third rule is that if you feel like adding comment to a variable name, you chose the wrong variable name. The final rule is do as your teammates do, so long as it does not counteract the prior rules.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/108796#108796 4 Answer by petr k. for what is an ideal variable naming convention for loop variables? petr k. 2008-09-20T17:22:34Z 2008-09-20T17:22:34Z <p>I use <strong>i</strong>, <strong>j</strong>, <strong>k</strong> (or <strong>r</strong> &amp; <strong>c</strong> for row-column looping). If you need <strong>more than three loop variables in a method</strong>, the the method is probably too long and complex and your code would likely <strong>benefit from splitting the method up</strong> into more methods and <strong>naming</strong> them <strong>properly</strong>.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/108882#108882 0 Answer by Tim Gradwell for what is an ideal variable naming convention for loop variables? Tim Gradwell 2008-09-20T17:59:45Z 2008-09-20T18:12:23Z <p>I've started to use context-relevant loop variable names mixed with <a href="http://c2.com/cgi/wiki?HungarianNotation" rel="nofollow">hungarian</a>.</p> <p>When looping through rows, I'll use <code>iRow</code>. When looping through columns I'll use <code>iCol</code>. When looping through cars I'll use <code>iCar</code>. You get the idea.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/108906#108906 0 Answer by Midhat for what is an ideal variable naming convention for loop variables? Midhat 2008-09-20T18:14:02Z 2008-09-20T18:14:02Z <p>for numerical computations, matlab, and the likes of it, dont use i, j</p> <p>these are reserved constants, but matlab wont complain.</p> <p>My personal favs are</p> <p>index first,second counter count</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/109415#109415 0 Answer by Ed L for what is an ideal variable naming convention for loop variables? Ed L 2008-09-20T21:12:37Z 2008-09-20T21:12:37Z <p>My favorite convention for looping over a matrix-like set is to use x+y as they are used in cartesian coordinates:</p> <pre><code>for x in width: for y in height: do_something_interesting(x,y) </code></pre> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/115104#115104 1 Answer by Derek Clegg for what is an ideal variable naming convention for loop variables? Derek Clegg 2008-09-22T14:22:03Z 2008-09-22T14:22:03Z <p>Whatever you choose, use the same index consistently in your code wherever it has the same meaning. For example, to walk through an array, you can use <code>i</code>, <code>jj</code>, <code>kappa</code>, whatever, but always do it the same way everywhere:</p> <pre><code>for (i = 0; i &lt; count; i++) ... </code></pre> <p>The best practice is to make this part of the loop look the same throughout your code (including consistently using <code>count</code> as the limit), so that it becomes an idiom that you can skip over mentally in order to focus on the meat of the code, the body of the loop.</p> <p>Similarly, if you're walking through an 2d array of pixels, for example, you might write</p> <pre><code>for (y = 0; y &lt; height; y++) for (x = 0; x &lt; width; x++) ... </code></pre> <p>Just do it the same way in every place that you write this type of loop.</p> <p>You want your readers to be able to ignore the boring setup and see the brilliance of what you're doing in the actual loop.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/127110#127110 1 Answer by Onorio Catenacci for what is an ideal variable naming convention for loop variables? Onorio Catenacci 2008-09-24T13:26:25Z 2008-09-24T13:26:25Z <p>Steve McConnell's <em><a href="http://www.cc2e.com/" rel="nofollow">Code Complete</a></em> has, as usual, some excellent advice in this regard. The relevant pages (in the first edition anyway) are 340 and 341. Definitely advise anyone who's interested in improving their loop coding to give this a look. McConnell recommends meaningful loop counter names but people should read what he's got to say themselves rather than relying on my weak summary.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/131236#131236 0 Answer by MachinationX for what is an ideal variable naming convention for loop variables? MachinationX 2008-09-25T02:55:55Z 2008-09-25T02:55:55Z <p>I usually use:</p> <pre><code>for(lcObject = 0; lcObject &lt; Collection.length(); lcObject++) { //do stuff } </code></pre> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/142741#142741 0 Answer by the0ther for what is an ideal variable naming convention for loop variables? the0ther 2008-09-27T01:55:25Z 2008-09-27T01:55:25Z <p>i also use the double-letter convention. ii, jj, kk.</p> <p>i think using those letters, even though they're doubled, is the best way to go. it's a familiar convention, even with the doubling. </p> <p>there's a lot to say for sticking with conventions. it makes things a lot more readable.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/142755#142755 0 Answer by loudej for what is an ideal variable naming convention for loop variables? loudej 2008-09-27T02:08:01Z 2008-09-27T02:08:01Z <p>For integers I use int index, unless it's nested then I use an Index suffix over what's being iterated like int groupIndex and int userIndex.</p> http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/320787#320787 0 Answer by J.T. Hurley for what is an ideal variable naming convention for loop variables? J.T. Hurley 2008-11-26T14:04:53Z 2008-11-26T14:04:53Z <p>In Python, I use i, j, and k if I'm only counting times through. I use x, y, and z if the iteration count is being used as an index. If I'm actually generating a series of arguments, however, I'll use a meaningful name.</p>