|
|
|
|
|
|
|
|
for a in arr: |
|
|
for a in arr: |
|
|
if a is None: |
|
|
if a is None: |
|
|
continue |
|
|
continue |
|
|
if re.match(r"[+-]?[0-9]+(\.0+)?$", str(a).replace("%%", "")): |
|
|
|
|
|
|
|
|
if re.match(r"[+-]?[0-9]{,19}(\.0+)?$", str(a).replace("%%", "")): |
|
|
counts["int"] += 1 |
|
|
counts["int"] += 1 |
|
|
elif re.match(r"[+-]?[0-9.]+$", str(a).replace("%%", "")): |
|
|
|
|
|
|
|
|
elif re.match(r"[+-]?[0-9.]{,19}$", str(a).replace("%%", "")): |
|
|
counts["float"] += 1 |
|
|
counts["float"] += 1 |
|
|
elif re.match(r"(true|yes|是|\*|✓|✔|☑|✅|√|false|no|否|⍻|×)$", str(a), flags=re.IGNORECASE): |
|
|
elif re.match(r"(true|yes|是|\*|✓|✔|☑|✅|√|false|no|否|⍻|×)$", str(a), flags=re.IGNORECASE): |
|
|
counts["bool"] += 1 |
|
|
counts["bool"] += 1 |