I find a weird thing in Python, if I assign a variable as int_int
, float_int
, int_float
, the type will be int
, float
, float
, seems the underline is a join character, like:
x = 100_200
then x will be a int
, value is 100200
. Can someone explain why and how to reasonable use?