This commit is contained in:
pkivolowitz 2023-02-01 07:27:49 -06:00 committed by GitHub
parent d322e3850f
commit 80cc8c3e1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ It is possible to call your assembly language code from Python. In fact,
it can be insanely easy. It can also be difficult. What differentiates
the two are the arguments you need to pass.
Python stores data ina very different way than C and therefore assembly
Python stores data in a very different way than C and therefore assembly
language. All Python data types are objects, which for sets and dicts
can make things difficult and outside the scope of this book.