Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <v4kt5h$3k78m$3@dont-email.me>
Deutsch   English   Français   Italiano  
<v4kt5h$3k78m$3@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder9.news.weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: David Brown <david.brown@hesbynett.no>
Newsgroups: comp.lang.c
Subject: Re: "undefined behavior"?
Date: Sat, 15 Jun 2024 22:22:09 +0200
Organization: A noiseless patient Spider
Lines: 68
Message-ID: <v4kt5h$3k78m$3@dont-email.me>
References: <666a095a$0$952$882e4bbb@reader.netnews.com>
 <v4d4hm$1rjc5$1@dont-email.me> <8734ph7qe5.fsf@nosuchdomain.example.com>
 <666a226d$0$951$882e4bbb@reader.netnews.com> <v4erpi$29e2g$2@dont-email.me>
 <666b0451$0$953$882e4bbb@reader.netnews.com> <v4hu1b$2ve93$3@dont-email.me>
 <666ccccb$0$973$882e4bbb@reader.netnews.com>
 <87r0cz3rx5.fsf@nosuchdomain.example.com>
 <666d0f4f$0$979$882e4bbb@reader.netnews.com>
 <87msnm505i.fsf@nosuchdomain.example.com>
 <666d1c61$0$953$882e4bbb@reader.netnews.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sat, 15 Jun 2024 22:22:10 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="f678a482ffafce70c2ceef8ecfac3e10";
	logging-data="3808534"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1+1Ov+UzaqkrTp6ATm2qgMWTFLzIRKFuwM="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:c4LbBpVNHWHeVcUncJ0C+Xyk8lk=
In-Reply-To: <666d1c61$0$953$882e4bbb@reader.netnews.com>
Content-Language: en-GB
Bytes: 4166

On 15/06/2024 06:45, DFS wrote:
> On 6/14/2024 11:56 PM, Keith Thompson wrote:
>> DFS <nospam@dfs.com> writes:
>>> On 6/14/2024 9:39 PM, Keith Thompson wrote:
>>>> DFS <nospam@dfs.com> writes:
>>>> [...]
>>>>> During conversion, I got a Python error I don't remember seeing in 
>>>>> the past:
>>>>>
>>>>> "TypeError: list indices must be integers or slices, not float"
>>>>>
>>>>> because division returns a float, and some of the array addressing was
>>>>> like this: nums[i/2].
>>>> [...]
>>>> C's "/" operator yields a result with the type of the operands
>>>> (after
>>>> promotion to a common type).
>>>> Python's "/" operator yields a floating-point result.  For C-style
>>>> integer division, Python uses "//".  (Python 2 is more C-like.)
>>>
>>> I was surprised python did that, since every division used in the
>>> array addressing results in an integer.
>>>
>>> After casting i to an int before any array addressing, // works.
>>
>> I'm surprised you needed to convert i to an int.  I would think that
>  > just replacing nums[i/2] by nums[i//2] would do the trick,
>  > as long> as i always has an int value (note Python's dynamic typing). 
>   If i
>> is acquiring a float value, that's probably a bug, given the name.
> 
> I spotted the issue.  Just prior to using i for array addressing I said:
> i = N/2.
> 
> The fix is set i = int(N/2)
> 
> 
> 
>> But if you want help with your Python code, comp.lang.python is the
>> place to ask.
> 
> Thanks for your help, but David Brown is a Python developer and I'll ask 
> him python questions here whenever I care to.
> 

I consider myself more of a C developer than a Python developer, but I 
use Python regularly.  I would say that my knowledge of the C language 
and standard, while not as deep as some others here, covers a far higher 
proportion of the language than my knowledge of Python covers of Python. 
  But I think you can make good use of Python while knowing a smaller 
fraction of the language and library than for C.

> In the recent past you were involved in discussions on perl, Fortran and 
> awk, among other off-topics.
> 
> Rules for thee but not for me?
> 

If occasional questions or discussions about other languages pop up 
here, people will often answer them.  But for more in-depth discussions 
or questions, this is not the newsgroup - comp.lang.python is the place 
for Python questions.  (You'll also probably get better answers there 
than I can give.)

The rules are for everyone, but they are a bit fuzzy.  (And different 
posters have different levels of fuzziness.)