+Mark Lawrence sorry for that I'm new here and I didn't know about that.
--
http://mail.python.org/mailman/listinfo/python-list
On Sunday, March 24, 2013 4:35:29 PM UTC+1, yahya Kacem wrote:
> Hi, i have this 2 files:
>
>
>
> file named multipli:
>
>
>
> #!/usr/bin/python3.2
>
> #-* - coding : utf-8 -*
>
> def table(nb, max):
>
> i = 0
>
> while i < max:
>
> print(i + 1, " * ", nb,
On 24/03/2013 16:03, yahya Kacem wrote:
On Sunday, March 24, 2013 4:35:29 PM UTC+1, yahya Kacem wrote:
Hi, i have this 2 files:
file named multipli:
#!/usr/bin/python3.2
#-* - coding : utf-8 -*
def table(nb, max):
i = 0
while i < max:
print(i + 1,
On Mon, Mar 25, 2013 at 3:10 AM, Mark Lawrence wrote:
> On 24/03/2013 15:48, Chris Angelico wrote:
>>
>> On Mon, Mar 25, 2013 at 2:35 AM, yahya Kacem wrote:
>>>
>>> file named multipli:
>>>
>>> and file naled test:
>>>
>>> from multipli import table
>>
>>
>> Try naming it multipli.py
>>
>> C
On 24/03/2013 15:48, Chris Angelico wrote:
On Mon, Mar 25, 2013 at 2:35 AM, yahya Kacem wrote:
file named multipli:
and file naled test:
from multipli import table
Try naming it multipli.py
ChrisA
Before or after fixing the infinite loop? :)
--
Cheers.
Mark Lawrence
--
http://ma
On Sunday, March 24, 2013 4:35:29 PM UTC+1, yahya Kacem wrote:
> Hi, i have this 2 files:
>
>
>
> file named multipli:
>
>
>
> #!/usr/bin/python3.2
>
> #-* - coding : utf-8 -*
>
> def table(nb, max):
>
> i = 0
>
> while i < max:
>
> print(i + 1, " * ", nb,
On Mon, Mar 25, 2013 at 2:35 AM, yahya Kacem wrote:
> file named multipli:
>
> and file naled test:
>
> from multipli import table
Try naming it multipli.py
ChrisA
--
http://mail.python.org/mailman/listinfo/python-list
On Sun, Mar 24, 2013 at 4:35 PM, yahya Kacem wrote:
> Hi, i have this 2 files:
>
> file named multipli:
>
> #!/usr/bin/python3.2
> #-* - coding : utf-8 -*
> def table(nb, max):
> i = 0
> while i < max:
> print(i + 1, " * ", nb, "= ", (i + 1) * nb)
>
> and file naled