I'm trying to save the following list to a CSV file:
import csv
list = ['52.26.17.68', 'TotalPhysicalMemory : 4294361088', '10.12.15.14', 'TotalPhysicalMemory : 6546534654']
with open('testing.csv', 'w', newline='') as r:
writer = csv.writer(r, delimiter='\t')
writer.writerows(list)
With this my CSV file looks like:
How can I get "TotalPhysicalMemory" into column B so it looks like below?