From d7b8cdbdf6cefe72c7a2452f16ee6e940c93c043 Mon Sep 17 00:00:00 2001 From: Lasse Edfast <8794658+lasseedfast@users.noreply.github.com> Date: Wed, 26 Jun 2024 12:38:26 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 60f72d4..cdda167 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,8 @@ To use this module, simply import it and call the desired function with the text from print_color import print_green, print_rainbow print_green("This is in green!") -print_rainbow("This", "will", "be", "in", "multiple", "colors!")``` +print_rainbow("This", "will", "be", "in", "multiple", "colors!") +``` Alternatively, you can import all functions at once using from print_color import *. However, be cautious when using this approach as it imports all public names defined in the module, which can lead to conflicts with other modules or variables in your namespace.*