changeset 12352:cf652da78b89 draft

<wib_jonas> `` perl -pi -e \'s/print (.*)/print($1)/\' /hackenv/bin/password
author HackEso <hackeso@esolangs.org>
date Wed, 04 Nov 2020 14:37:41 +0000
parents af405b8a7235
children 9e69a48ed481
files bin/password
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/password	Wed Nov 04 14:36:52 2020 +0000
+++ b/bin/password	Wed Nov 04 14:37:41 2020 +0000
@@ -3,4 +3,4 @@
 import secrets
 import string
 
-print "".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15))
+print("".join(secrets.choice(string.ascii_lowercase) for _ in xrange(15)))