Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Deal with Several Conditions | Explore Dataset
Introduction to Python for Data Analysis

bookDeal with Several Conditions

If you want to implement several conditions, you can do this easily.

  • If you want to check dataset for the first and second condition to be True, just use & statement:

DataFrame.loc[condition1 & condition2]

  • If you want to check dataset for the first or the second condition to be True, just use | statement:

DataFrame.loc[condition1 | condition2].

question-icon

Calculate the number of users who choose the 'week' or 'year' plan. You should work with the data that titled as df.

df = df.[== 'week' df['plan']]

Click or drag`n`drop items and fill in the blanks

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 14

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Awesome!

Completion rate improved to 2.08

bookDeal with Several Conditions

Swipe to show menu

If you want to implement several conditions, you can do this easily.

  • If you want to check dataset for the first and second condition to be True, just use & statement:

DataFrame.loc[condition1 & condition2]

  • If you want to check dataset for the first or the second condition to be True, just use | statement:

DataFrame.loc[condition1 | condition2].

question-icon

Calculate the number of users who choose the 'week' or 'year' plan. You should work with the data that titled as df.

df = df.[== 'week' df['plan']]

Click or drag`n`drop items and fill in the blanks

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 14
some-alt