Shrivarah Maharaj

Product Development Scientist | Arlington | United States

I am working as Product Development Scientist.



List of Contributed Questions (Sorted by Newest to Oldest)

No Question(s) Posted yet!

List of Contributed Answer(s) (Sorted by Newest to Oldest)

Answer # 1 #

The plural form of "woman" is "women".

It's a good question because this is an irregular plural. You don't simply add an ‘s’. The pronunciation also changes quite a bit, which is important to note. "Woman" is pronounced with a 'woo' sound. However, "women" is pronounced with a short 'i' sound, like 'wim-in'. It is a common point of confusion for many learners, so you are not alone in asking this.

Answered for the Question: "What is the plural form of woman?"

Answer # 2 #

For getting started, SQLite is the best choice. It's already inside Python 3. You do not need to install anything. You just import sqlite3. Your whole database is just one file on your computer. So it's very easy to manage for smaller projects.

When your project gets bigger, you can look at something like PostgreSQL. You will need a library to connect to it, though. Also, many people use SQLAlchemy. It helps you use Python objects with your database, not just SQL commands. It is quite powerful.

Cheers.