“argumenty słów kluczowych wiersza poleceń Python” Kod odpowiedzi

Python otrzymuj argumenty wiersza poleceń

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

argumenty słów kluczowych wiersza poleceń Python

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--;

Odpowiedzi podobne do “argumenty słów kluczowych wiersza poleceń Python”

Pytania podobne do “argumenty słów kluczowych wiersza poleceń Python”

Więcej pokrewnych odpowiedzi na “argumenty słów kluczowych wiersza poleceń Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu