From 9b0d247c0c7a8bbe7bc8ab805b24d459de3704dc Mon Sep 17 00:00:00 2001 From: Arun Gatla <44539927+arungatla@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:12:00 +0530 Subject: [PATCH] Update strings.py its just a extended version and f strings of the print --- Versi Lama 03 - strings/strings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Versi Lama 03 - strings/strings.py b/Versi Lama 03 - strings/strings.py index dda2350f..79deff79 100644 --- a/Versi Lama 03 - strings/strings.py +++ b/Versi Lama 03 - strings/strings.py @@ -23,3 +23,7 @@ print(5*"wk") print('kue' 'pukis') print(text1 + text2) +print("completion of the code") +# F strings are the part of printing the data in the print statement +a=10 +print(f"hello i have {a} rs to buy that")