Chris wrote:
> I need your help!
> 
>  
> 
> I have this problem that I can’t seem to figure out.  Can you help?  The 
> problem is listed below, and below it is my code that I have so far.

This looks like a homework problem. We can help you understand Python 
but we won't give you the answer.

>     if random.randint(1,8) >= 5:
> 
>         'Team A' = team
> 
>     else:
> 
>         'Team B' = team

Your assignment statements are backwards here, it should be
team = 'Team A' etc.

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to