Small tweaks
This commit is contained in:
parent
b1dece0edd
commit
a1eb155b14
2 changed files with 7 additions and 6 deletions
|
@ -41,5 +41,5 @@ def coin(inp):
|
|||
return "You flip a coin and get " + sidename + "."
|
||||
else:
|
||||
flips = flip_simple(count)
|
||||
return "You flip %s coins and get "\
|
||||
return "You flip %s coins and get " \
|
||||
"%s heads and %s tails." % (str(count), str(flips[0]), str(flips[1]))
|
||||
|
|
Reference in a new issue