riklaunim@programming.dev to Python@programming.devEnglish · 1 year agoScripting machine vision and astronomical cameras in Pythonrkblog.devexternal-linkmessage-square5fedilinkarrow-up117file-text
arrow-up117external-linkScripting machine vision and astronomical cameras in Pythonrkblog.devriklaunim@programming.dev to Python@programming.devEnglish · 1 year agomessage-square5fedilinkfile-text
Examples of how to use amateur astrophotography and machine vision USB cameras with Python (or IronPython sometimes).
minus-squareSatouKazuma@lemmy.worldlinkfedilinkarrow-up2·1 year agoI noticed all of this was in Python 2. Isn’t that entire version deprecated?
minus-squareSatouKazuma@lemmy.worldlinkfedilinkarrow-up1·1 year agoIs it not? I noticed a lot of string formatting that looked straight out of 2.7
minus-squareriklaunim@programming.devOPlinkfedilinkarrow-up2·1 year ago% string formatting is still valid and used in Python 3. It’s not removed or deprecated for now.
I noticed all of this was in Python 2. Isn’t that entire version deprecated?
It’s not Python 2.
Is it not? I noticed a lot of string formatting that looked straight out of 2.7
% string formatting is still valid and used in Python 3. It’s not removed or deprecated for now.
TIL