From 197a64869d50068b008f2c87afe134ab10463cf1 Mon Sep 17 00:00:00 2001 From: David Avery Date: Wed, 29 Jan 2020 13:36:53 +0000 Subject: [PATCH] Lesson 55 --- basics.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/basics.py b/basics.py index e453560..acdfd99 100644 --- a/basics.py +++ b/basics.py @@ -1,4 +1,7 @@ -username = "" - -while username != "pypy": - username = input("Enter username: ") \ No newline at end of file +output = "" +something = "" +while something != "\end": + something = input("Say something: ") + if something != "\end": + output = output + something + ". " +print(output) \ No newline at end of file