Sujet : Re: Top 10 most common hard skills listed on resumes...
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.lang.cDate : 28. Aug 2024, 00:53:55
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <valouj$35rt8$9@dont-email.me>
References : 1 2 3 4 5 6 7 8 9
User-Agent : Pan/0.160 (Toresk; )
On Tue, 27 Aug 2024 09:44:40 +0200, David Brown wrote:
Python does not support any significant degree of low-level programming.
A key example of low-level programming is control of hardware, which on
most systems means accessing memory-mapped registers at specific
addresses, reading and writing in specific orders. Python has no means
to do any of that - C and C++ both provide this ability.
I’ve got news for you: this kind of thing is perfectly doable in Python
<
https://docs.python.org/3/library/ctypes.html>.