I used the following code to create a table in python.
import cx_Oracle as db
conn = db.connect('scott/tiger@localhost/orcl')
cursor = conn.cursor()
cursor.execute("create table films(title varchar(10), year varchar(10), director varchar(10))")
print("table created")
but when i tried to access the table from SQLplus it says that the table doesnt exists.
when tried to run the code again i got the error
"cx_Oracle.DatabaseError: ORA-00955: name is already used by an existing object"
what went wrong here.
I just started to learn python. your help is much appreciated.