import sys
# sys.argv contains the arguments passed to the script
print("Passed arguments:", sys.argv[1:]) # Display all arguments (except the script name)
for arg in sys.argv[1:]: # Iterate over the passed arguments
print(f"Processing: {arg}")
print("Passed arguments:", sys.argv[1:]) # Display all arguments (except the script name)
for arg in sys.argv[1:]: # Iterate over the passed arguments print(f"Processing: {arg}") `
copied from ChatGPT for Notion
Please authenticate to join the conversation.
In Review
💡 Requests
bug
5 months ago
cauamachado51
Get notified by email when there are changes.
In Review
💡 Requests
bug
5 months ago
cauamachado51
Get notified by email when there are changes.