For example, I have a list:
l = ["z","u","k","h","r","a","1","2","3"]
How can I check if an element in the list can be int, and if so, convert it to int and replace the str in the list, so that my list would look like
l = ["z","u","k","h","r","a",1,2,3]