I have data in a list. And it is in the form of milliseconds.
datas = [
'0m0.201s', '0m0.147s', '0m0.140s', '0m0.204s', '0m0.204s', '0m0.225s',
'0m0.189s', '0m0.205s', '0m0.204s', '0m0.205s', '0m0.176s', '0m0.184s',
'0m0.188s', '0m0.191s', '0m0.208s', '0m0.200s', '0m0.200s', '0m0.200s',
'0m0.200s', '0m0.180s', '0m0.193s', '0m0.200s', '0m0.211s', '0m0.189s',
'0m0.191s', '0m0.240s', '0m0.208s', '0m0.236s'
]
I have tried to first convert it into seconds to calculate the average. But I can't the get the way to do so.
How can I find the average of this data in python?