From a77699e06a39cb08d53a9ee779b3da94589f53e5 Mon Sep 17 00:00:00 2001 From: Silicon27 <99114143+Silicon27@users.noreply.github.com> Date: Mon, 20 Jan 2025 14:10:15 +0100 Subject: [PATCH] Typos fixed, and reformulated a bit --- 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: