1str.isnumeric()
2str = u"this2009";
3print str.isnumeric()
4> False
5str = u"23443434";
6print str.isnumeric()
7> True
1number = "34e.l5p#"
2separators = ""
3for char in name:
4 if name.isnumeric():
5 separators = separators + char
6print(separators) # .isnumeric() only prints the separators of the name(4.#)