I would like to use the function substr(my_var,1,2)
of SAS in Python. I tried a lot of functions like contains()
, split()
but it didn't work.
The functions contains()
and split()
work only for a string value. I would like to use it on a Python Series without using a for
.
Thanks a lot for your help