Hi@akhtar,
You can do this task using pandas module. Pandas has a function named get_dummies. It will convert your categorical string values into dummy variables. You can use this module as given bellow.
import pandas as pd
pd.get_dummies(name of categorical column)
Hope this will help.