What is wrong with this code? (Netflix Project)

)
ax = sns.violinplot(data = netflix_stocks_quarterly, x = netflix_stocks_quarterly, y = netflix_stocks_quarterly(Price)
ax.set_title)‘Distribution of 2017 Netflix Stock Prices by Quarter’)
ax.set(xlabel=‘Closing Stock Price’, ylabel=‘Business Quarters in 2017’)
plt.show()
plt.savefig(“Distribution.png”)
File “”, line 2
ax.set(title=‘Distribution of 2017 Netflix Stock Prices by Quarter’)
^
SyntaxError: invalid syntax

It seems the quotes you are using are not like '. Also, once you are defining the data, on x and y you can just put the column number between quotes. And also, you have some wrong spelling after set_title should be (.

Below is my code:

ax = sns.violinplot(data = netflix_stocks_quarterly,
x = “Quarter”,
y = “Price”)
ax.set_title(“Distribution of 2017 Netflix Stock Prices by Quarter”)
plt.ylabel(“CLosing Stock Price”)
plt.xlabel(“Business Quarters in 2017”)
plt.show()

I have tried this code but it was showing “ValueError: Could not interpret input ‘Price’”
but then I have changed the column value in ‘Y’ to “Adj Close” then It showed the plot properly.
but If I have successfully changed the column name to Price then why It is not recognizing it.