passing argeparse as us-east-1,us-east-2,us-east-3
# Setup commandline arguments
parser = argparse.ArgumentParser(description='using Terraform')
parser.add_argument(
'-r',
'--region',
type=str,
required=True,
help='Region in which the ec2 need to be created')
and then trying to for loop for in each region
for region_1 in ([region]):
print(region_1)
for print(region_1) its prininting all the regions but i want it iteration in loop and print one region at a time. please let me know whatcan be done