<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-2">
<META content="MSHTML 6.00.2800.1226" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV>
<DIV><FONT face=Arial size=2>Hello, I was just trying some different 
combinations, and noticed, that in sequence of commands:</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt; a=7</FONT></DIV>
<DIV>&gt;&gt;&gt; b=9</DIV>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt; c=8</FONT></DIV>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt; for i in range(a,b,c):</FONT></DIV>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt;&nbsp;&nbsp;&nbsp; print i</FONT></DIV>
<DIV><FONT face=Arial size=2>...</FONT></DIV>
<DIV><FONT face=Arial size=2>...</FONT></DIV>
<DIV><FONT face=Arial size=2>7</FONT></DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>
<DIV>&nbsp;</DIV></FONT></DIV>
<DIV><FONT face=Arial size=2>... gives value a, becuse it is the first value in 
the row, and because a, b, c&nbsp;are no "logical sequence"&nbsp;for computer 
(it doesn't support alphabet) !!</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt; a=4</FONT></DIV>
<DIV>&gt;&gt;&gt; b=6</DIV>
<DIV>&gt;&gt;&gt; c=8</DIV>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt; for d in range(a,b,c):</FONT></DIV>
<DIV>...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;print d</DIV>
<DIV>...</DIV>
<DIV>4</DIV>
<DIV><FONT face=Arial size=2>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV></FONT></DIV>
<DIV><FONT face=Arial size=2>.. I changed the order of letters to check if I am 
right.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>&gt;&gt;&gt; a=4</FONT></DIV>
<DIV>&gt;&gt;&gt; b=6</DIV>
<DIV>&gt;&gt;&gt; c=8</DIV>
<DIV>&gt;&gt;&gt;&nbsp;for d in range(b,c):</DIV>
<DIV>...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print b</DIV>
<DIV>...</DIV>
<DIV>6</DIV>
<DIV>6</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>but then I accidentally mixed values and have 
instead of <STRONG>"print d"</STRONG>, used <STRONG>"print b"</STRONG> - and I 
got two results one after another, two 6. So, I see one stands for varaiable b, 
and the other for d, from "for d in range" loop, but how is&nbsp;it 
possible,&nbsp;what happened, how computer gets that result&nbsp; 
??&nbsp;</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Thanks</FONT></DIV>
<DIV><FONT face=Arial 
size=2></FONT>&nbsp;</DIV></FONT></DIV></DIV></BODY></HTML>