List of Port Currently in Use

import serial.tools.list_ports
 
	ports = list(serial.tools.list_ports.comports())
	
	for p in ports:
	 	print(p)