How to plot scatter graphs?

I’m learning Python libraries that help us in plotting variables. I have learned that a scatter plot is a type of chart that uses dots to represent data points on two variables. It is commonly used to explore the relationship between two variables and to identify patterns in the data. I have written a code using the matplotlib library that plots a single scatter graph. Here, it is:

I want to learn if that is there possible to plot the same thing using the Seaborn Library. If yes, can someone provide me with a code on how to do that? Is this possible to plot more than plots in a single chart? How can I beautify my graphs?

Yes @safa, it is possible to do the same thing using Seaborn, and with this library, you can create informative and visually appealing single scatter plots easily. Here is an example code which creates a simple scatter plot using this library: