“Python -Befehlszeilen -Schlüsselwortargumente” Code-Antworten

Python erhalten Befehlszeilenargumente

import sys
print("This is the name of the script:", sys.argv[0])
print("Number of arguments:", len(sys.argv))
print("The arguments are:" , str(sys.argv))

#Example output
#This is the name of the script: sysargv.py
#Number of arguments in: 3
#The arguments are: ['sysargv.py', 'arg1', 'arg2']
Amused Albatross

Python -Befehlszeilen -Schlüsselwortargumente

import argparse

if __name__ == '__main__':
   parser = argparse.ArgumentParser()
   parser.add_argument('--arg1')
   parser.add_argument('--arg2')
   args = parser.parse_args()

   print(args.arg1)
   print(args.arg2)

   my_dict = {'arg1': args.arg1, 'arg2': args.arg2}
   print(my_dict)
Expert--;

Ähnliche Antworten wie “Python -Befehlszeilen -Schlüsselwortargumente”

Fragen ähnlich wie “Python -Befehlszeilen -Schlüsselwortargumente”

Weitere verwandte Antworten zu “Python -Befehlszeilen -Schlüsselwortargumente” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen