<div>Hello everyone,</div>
<div>&nbsp;</div>
<div>I need to do something very simple but I'm having trouble finding the way to do it - at least easily.&nbsp; I have created a tuple and now need to find the position of individual members of that tuple.&nbsp; Specifically, the tuple is something like: words = (&quot;you&quot;, &quot;me&quot;, &quot;us&quot;, &quot;we&quot;, &quot;and&quot;, &quot;so&quot;, &quot;forth&quot;) and I need to be able to name a member, for example, &quot;us&quot; and find what the position (index) of that word is in the tuple.&nbsp; 
</div>
<div>&nbsp;</div>
<div>I would have thought there would be a simple built in function&nbsp;for that but I just went through the built in functions in the Python Library Reference and I didn't find anything.&nbsp; I could probably figure out how to write a while&nbsp;loop or something to do a sequential search until I found the right member but I really believe there must be an easier way and I'm just not seeing it.&nbsp; You can probably tell I'm just learning Python so any help would be appreciated.
</div>
<div>&nbsp;</div>
<div>Thanks very much in advance,</div>
<div>Steve</div>