Skip to content

Commit

Permalink
A: Python - IPP #1 - see desc
Browse files Browse the repository at this point in the history
Removed placeholder (test) k in line 29 for printing the entire name, it works however the error specified in the previous commit has not yet been fixed. Going through https://github.com/rlvaugh/Impractical_Python_Projects/blob/master/Chapter_1/pseudonyms.py now to see what I have done wrong
  • Loading branch information
Gizmotronn committed Dec 13, 2019
1 parent cb69e57 commit 193586d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impractical-projects/1. Name Generator/1.name-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

yourLastName = random.choice(lastNames)

print(yourFirstName + " k " + yourLastName)
print(yourFirstName + " " + yourLastName)

print("\n\n")
print("{} {}".format(yourFirstName, yourLastName), file-sys.stderr)
Expand Down

0 comments on commit 193586d

Please sign in to comment.