Answers for "how to extract first 4 characters in a column in python"

1

extract first letter of column python

df['new_col'] = df['First'].astype(str).str[0]
df

Out[29]:
   First  Second new_col
0    123     234       1
1     22    4353       2
2     32     355       3
3    453     453       4
4     45     345       4
5    453     453       4
6     56      56       5
Posted by: Guest on November-02-2020

Code answers related to "how to extract first 4 characters in a column in python"

Python Answers by Framework

Browse Popular Code Answers by Language