[Tutor] split a 5 chars word into 4 and 1

Emad Nawfal (عمـ نوفل ـاد) emadnawfal at gmail.com
Tue Mar 9 16:45:38 CET 2010


On Tue, Mar 9, 2010 at 10:31 AM, Rafik Ouerchefani
<rouerchefani at gmail.com>wrote:

> Hello,
>
> I'm trying to split 5 chars words (codes) into 2 variables. The first must
> contain the first 4 characters. The second variable will only contain the
> last character. I'm working in a loop pre-generated codes.
>
> Any magic command for this ? :-)
>
> Examples of codes :
> 3cmvA
> 3cmvB
> 3cmvC
> 3cmwA
> 1g18A
> 2g88A
> 1mo4A
>  2odwA
> 1u94A
> 1xmvA
> 1xp8A
> 2zr9A
>
> Thanks a lot !
>
> a+
>
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> To unsubscribe or change subscription options:
> http://mail.python.org/mailman/listinfo/tutor
>
> What about indexing
part1 = word[:4]
part2 = word[4]


-- 
لا أعرف مظلوما تواطأ الناس علي هضمه ولا زهدوا في إنصافه كالحقيقة.....محمد
الغزالي
"No victim has ever been more repressed and alienated than the truth"

Emad Soliman Nawfal
Indiana University, Bloomington
--------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20100309/c32db061/attachment.html>


More information about the Tutor mailing list