From 8e8c700b483e80607a25f3aa069bfe01ab4b3024 Mon Sep 17 00:00:00 2001 From: Silicon27 <99114143+Silicon27@users.noreply.github.com> Date: Mon, 20 Jan 2025 19:32:49 +0100 Subject: [PATCH] Typos fixed, and reformulated a bit (#31) --- python/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/README.md b/python/README.md index 040ecb7..5ac6546 100644 --- a/python/README.md +++ b/python/README.md @@ -4,14 +4,14 @@ 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 in a very different way than C and therefore assembly +Python stores data very differently 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. If you want to explore the subject deeply, we suggest [this link](https://realpython.com/python-bindings-overview) -## Simple EXample +## Simple Example Take this trivial C function: