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