ในโปรแกรมนี้ เราจะประกาศชุด Pandas สองชุดและเปรียบเทียบองค์ประกอบต่างๆ ก่อนที่เราจะแก้ปัญหา เราต้องนำเข้าไลบรารี Pandas ลงใน IDE ในพื้นที่ของเรา ซึ่งสามารถทำได้โดยการติดตั้ง Pandas บนเครื่องของเรา คำสั่งสำหรับการติดตั้ง Pandas คือ −
pip install pandas
อินพุต
Series1 = [2,4,6,8,10]
Series2 = [1,3,5,7,9]
อัลกอริทึม
Step 1: Define two Pandas series using the Series() function of Pandas library.
Step 2: Compare the series using greater than, less than, and equal-to operators.
โค้ดตัวอย่าง
import pandas as pd series1 = pd.Series([2,4,6,8,10]) series2 = pd.Series([1,3,5,7,9]) print("Greater Than: \n",series1>series2) print("\nLess Than: \n",series1<series2) print("\nEquals : \n", series1 == series2)
ผลลัพธ์
Greater Than: 0 True 1 True 2 True 3 True 4 True dtype: bool Less Than: 0 False 1 False 2 False 3 False 4 False dtype: bool Equals : 0 False 1 False 2 False 3 False 4 False dtype: bool