Skip to content

Commit

Permalink
A: Python - IPP #1 - Finished!
Browse files Browse the repository at this point in the history
Impractical Python Projects #1 - https://github.com/rlvaugh/Impractical_Python_Projects/blob/master/Chapter_1/pseudonyms.py - is finished and fixed, and the palindromes (impractical-python/2-palindromes) can be used to generate names for use in our Unity games
  • Loading branch information
Gizmotronn committed Dec 13, 2019
1 parent 193586d commit 4ff2d5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions impractical-projects/1. Name Generator/1.name-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
print(yourFirstName + " " + yourLastName)

print("\n\n")
print("{} {}".format(yourFirstName, yourLastName), file-sys.stderr)
print(firstNames, lastNames, file = sys.stderr)
print("\n\n")

try_again = input("\n\nTry again? (Press Enter else n to quit)\n ") # Exit loop (lines 33-37)
try_again = input("\n\nTry again? (Press Enter else n to quit)\n ") # exit loop (35-37)
if try_again.lower() == "n":
break

Expand Down

0 comments on commit 4ff2d5d

Please sign in to comment.