We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707cc70 commit 0fdc855Copy full SHA for 0fdc855
sources/add2vals.py
@@ -16,8 +16,10 @@
16
17
if argnumbers != 2 :
18
print("")
19
- print("Usage: add X Y, where X and Y are individual values.")
20
- print(" If uncompiled, usage is 'python add2vals.py X Y'.")
21
- print(" (You entered " + str(argnumbers) + " value/s.)")
+ print("You entered " + str(argnumbers) + " value/s.")
+ print("")
+ print("Usage: 'add2vals X Y' where X and Y are individual values.")
22
+ print(" If add2vals is not in your path, usage is './add2vals X Y'.")
23
+ print(" If unbundled, usage is 'python add2vals.py X Y'.")
24
25
sys.exit(1)
0 commit comments