I'm trying to connect to an oracle db using python through PyCharm, below is my code and a screenshot of the connection details
Code:
import cx_Oracle
try:
conn = cx_Oracle.connect('sys/123@//localhost:1521/XEPDB1')
except:
print("Connection Error")
exit()
Output
