sameera-madushan / Diceware-Password-Generator

Python implementation of the diceware password generating algorithm.
MIT License
37 stars 9 forks source link

Syntax Error when executing the dpg.py #2

Closed ayasario closed 6 months ago

ayasario commented 3 years ago

When I try to run the dpg.py file via the Linux command line, it gives me a syntax error "File "dpg.py", line 47 print(i, end=' ')" ^

Any idea how to solve this? Thanks

sameera-madushan commented 2 years ago

Remove the single quotation mark ( " ) at the end. It should be as follow. print(i, end=' ')