#!/usr/bin/python3# Challenge 031## Task #2# Create a script to demonstrate creating dynamic variable name, assign a value# to the variable and finally print the variable. The variable name would be# passed as command line argument.importsysglobals()[sys.argv[1]]=10print(globals()[sys.argv[1]])