Sujet : Re: Top 10 most common hard skills listed on resumes...
De : david.brown (at) *nospam* hesbynett.no (David Brown)
Groupes : comp.lang.cDate : 27. Aug 2024, 08:44:40
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vak058$2t849$2@dont-email.me>
References : 1 2 3 4 5 6 7 8
User-Agent : Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0
On 27/08/2024 06:36, Lawrence D'Oliveiro wrote:
On Mon, 26 Aug 2024 15:46:02 +0200, David Brown wrote:
Wikipedia classifies C as a high-level language that also supports a
degree of low-level programming, which I think is a fair assessment.
The same could be said of Python.
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. (Micropython, a subset of Python targeting microcontrollers and small systems, has library modules that can do this.)