forked from swee/MeowNex
Let users pass more than one arg in nerding
This commit is contained in:
parent
7448d9fc43
commit
0887b88d0d
1 changed files with 2 additions and 5 deletions
|
@ -1,8 +1,5 @@
|
|||
from os import system
|
||||
from sys import argv
|
||||
if len(argv) > 4:
|
||||
print("This command takes one or zero arugments.")
|
||||
elif len(argv) == 4:
|
||||
if len(argv) >= 4:
|
||||
print("This is " + argv[3] + ": \U0001F913\U0000261D")
|
||||
else:
|
||||
print("\U0001F913\U0000261D")
|
||||
print("\U0001F913\U0000261D")
|
||||
|
|
Loading…
Reference in a new issue