From 80cc8c3e1e253685c57c4b3312389c1cc142a9b9 Mon Sep 17 00:00:00 2001 From: pkivolowitz Date: Wed, 1 Feb 2023 07:27:49 -0600 Subject: [PATCH] typo --- python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/README.md b/python/README.md index 8736f59..040ecb7 100644 --- a/python/README.md +++ b/python/README.md @@ -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.