Oct-06-2020, 06:06 PM
Hi,
I have two exits that present two types of data. In the first variable, I return the data type below:
I have two exits that present two types of data. In the first variable, I return the data type below:
return (type(v_inp_one)) >> <class 'cgi.FieldStorage'>In the second variable, I return the data type below:
return (type(v_inp_two)) >> <class 'str'>Now I need to convert the variable to type ( <class 'str'> ) for type ( <class 'cgi.FieldStorage'> ), how do I do this?