1708:com.google.android.partnersetup/u0a120 this is line
I want output as : ['1708','com','google','android','partnersetup','u0a120']
I tried this
result_1 = [item.split(':')[0] for item in listli[8]]
print(result_1)
but it giving me the output : ['1', '7', '0', '8', '', 'c', 'o', 'm', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'a', 'n', 'd', 'r', 'o', 'i', 'd', '.', 'p', 'a', 'r', 't', 'n', 'e', 'r', 's', 'e', 't', 'u', 'p', '/', 'u', '0', 'a', '1', '2', '0']
can u plz help me to get me the output I want ?