From 8652acd83f6ac2a30b9871c91923676d9d415bd4 Mon Sep 17 00:00:00 2001 From: Alan Wang <44191076+alankrantas@users.noreply.github.com> Date: Thu, 20 Feb 2020 10:10:35 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 573d027..c0c3e12 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ The following code from microbit import * ``` -is a bad idea. This way imports everything of the microbit module even you don't need many of the features. +is a bad idea. This way imports everything of the microbit module even you don't need many of the features and wastes extra memory. -Instead, you should only import sub-modules you actually use: +Instead, you should only import sub-modules you are going to use: ```python from microbit import pin0, display, sleep