Lesson 55

This commit is contained in:
David Avery 2020-01-29 13:36:53 +00:00
parent 6cefa8ef7b
commit 197a64869d

View File

@ -1,4 +1,7 @@
username = "" output = ""
something = ""
while username != "pypy": while something != "\end":
username = input("Enter username: ") something = input("Say something: ")
if something != "\end":
output = output + something + ". "
print(output)