1
0
Fork 0
forked from swee/MeowNex

Let users pass more than one arg in nerding

This commit is contained in:
Nova Cat 2024-11-16 21:01:55 -08:00
parent 7448d9fc43
commit 0887b88d0d

View file

@ -1,8 +1,5 @@
from os import system
from sys import argv from sys import argv
if len(argv) > 4: if len(argv) >= 4:
print("This command takes one or zero arugments.")
elif len(argv) == 4:
print("This is " + argv[3] + ": \U0001F913\U0000261D") print("This is " + argv[3] + ": \U0001F913\U0000261D")
else: else:
print("\U0001F913\U0000261D") print("\U0001F913\U0000261D")