Python Cheat Sheet for JavaScripters
Python has a lot in common with JavaScript. Functions are first class citizens and everything is an object. Here is a little cheat sheet, I created after a deepdive into JavaScript:
String Interpolation
foo = 'bar'
baz = f'foo, {foo}.'
print(baz)
# ...
hashnode.com
Nico Braun
Developer
If you have ideas for improvements or things to add, please let me know.