บทช่วยสอนงูหลาม

Python HOME แนะนำ Python Python เริ่มต้น ไวยากรณ์หลาม ความคิดเห็นหลาม ตัวแปรหลาม ประเภทข้อมูลหลาม ตัวเลขหลาม Python Casting Python Strings Python Booleans ตัวดำเนินการ Python รายการหลาม Python Tuples ชุดหลาม พจนานุกรม Python Python If...Else Python ในขณะที่ลูป Python สำหรับลูป ฟังก์ชั่นหลาม Python Lambda Python Arrays Python คลาส/วัตถุ มรดกหลาม Python Iterators ขอบเขตหลาม โมดูล Python วันที่หลาม คณิตศาสตร์หลาม Python JSON Python RegEx Python PIP Python ลอง...ยกเว้น อินพุตผู้ใช้ Python การจัดรูปแบบสตริงหลาม

การจัดการไฟล์

การจัดการไฟล์ Python Python อ่านไฟล์ Python เขียน/สร้างไฟล์ Python ลบไฟล์

โมดูล Python

กวดวิชา NumPy เกมส์หมีแพนด้า กวดวิชา Scipy

Python Matplotlib

บทนำ Matplotlib Matplotlib เริ่มต้น Matplotlib Pyplot Matplotlib พล็อต เครื่องหมาย Matplotlib Matplotlib Line ป้ายกำกับ Matplotlib Matplotlib Grid แผนย่อย Matplotlib Matplotlib Scatter Matplotlib บาร์ Matplotlib Histograms Matplotlib แผนภูมิวงกลม

การเรียนรู้ของเครื่อง

เริ่มต้น โหมดค่ามัธยฐาน ส่วนเบี่ยงเบนมาตรฐาน เปอร์เซ็นไทล์ การกระจายข้อมูล การกระจายข้อมูลปกติ พล็อตกระจาย การถดถอยเชิงเส้น การถดถอยพหุนาม การถดถอยพหุคูณ มาตราส่วน รถไฟ/ทดสอบ ต้นไม้การตัดสินใจ

Python MySQL

MySQL เริ่มต้น MySQL สร้างฐานข้อมูล MySQL สร้างตาราง MySQL Insert MySQL Select MySQL Where MySQL สั่งซื้อโดย MySQL Delete MySQL Drop Table MySQL Update MySQL Limit MySQL เข้าร่วม

Python MongoDB

MongoDB เริ่มต้น MongoDB สร้างฐานข้อมูล MongoDB สร้างคอลเล็กชัน MongoDB แทรก MongoDB ค้นหา แบบสอบถาม MongoDB MongoDB Sort MongoDB ลบ MongoDB Drop Collection อัพเดท MongoDB MongoDB Limit

การอ้างอิงหลาม

ภาพรวมของ Python ฟังก์ชันในตัวของ Python Python String Methods Python List Methods วิธีพจนานุกรม Python วิธี Python Tuple Python Set Methods วิธีไฟล์ Python คีย์เวิร์ด Python ข้อยกเว้นของ Python คำศัพท์หลาม

การอ้างอิงโมดูล

โมดูลสุ่ม โมดูลคำขอ โมดูลสถิติ โมดูลคณิตศาสตร์ โมดูล cMath

Python ฮาวทู

ลบรายการที่ซ้ำกัน ย้อนกลับสตริง เพิ่มสองตัวเลข

ตัวอย่าง Python

ตัวอย่าง Python Python Compiler แบบฝึกหัดหลาม แบบทดสอบ Python ใบรับรอง Python

ตัว ดำเนินการ Python


ตัวดำเนินการ Python

ตัวดำเนินการใช้เพื่อดำเนินการกับตัวแปรและค่าต่างๆ

ในตัวอย่างด้านล่าง เราใช้ตัว+ดำเนินการเพื่อเพิ่มค่าสองค่าเข้าด้วยกัน:

ตัวอย่าง

print(10 + 5)

Python แบ่งตัวดำเนินการในกลุ่มต่อไปนี้:

  • ตัวดำเนินการเลขคณิต
  • ผู้ประกอบการที่ได้รับมอบหมาย
  • ตัวดำเนินการเปรียบเทียบ
  • ตัวดำเนินการลอจิก
  • ตัวดำเนินการข้อมูลประจำตัว
  • ผู้ประกอบการสมาชิก
  • ตัวดำเนินการระดับบิต

ตัวดำเนินการเลขคณิตของ Python

ตัวดำเนินการเลขคณิตใช้กับค่าตัวเลขเพื่อดำเนินการทางคณิตศาสตร์ทั่วไป:

Operator Name Example Try it
+ Addition x + y
- Subtraction x - y
* Multiplication x * y
/ Division x / y
% Modulus x % y
** Exponentiation x ** y
// Floor division x // y

ตัวดำเนินการมอบหมาย Python

ตัวดำเนินการมอบหมายใช้เพื่อกำหนดค่าให้กับตัวแปร:

Operator Example Same As Try it
= x = 5 x = 5
+= x += 3 x = x + 3
-= x -= 3 x = x - 3
*= x *= 3 x = x * 3
/= x /= 3 x = x / 3
%= x %= 3 x = x % 3
//= x //= 3 x = x // 3
**= x **= 3 x = x ** 3
&= x &= 3 x = x & 3
|= x |= 3 x = x | 3
^= x ^= 3 x = x ^ 3
>>= x >>= 3 x = x >> 3
<<= x <<= 3 x = x << 3


ตัวดำเนินการเปรียบเทียบ Python

ตัวดำเนินการเปรียบเทียบใช้เพื่อเปรียบเทียบสองค่า:

Operator Name Example Try it
== Equal x == y
!= Not equal x != y
> Greater than x > y
< Less than x < y
>= Greater than or equal to x >= y
<= Less than or equal to x <= y

Python Logical Operators

ตัวดำเนินการเชิงตรรกะใช้เพื่อรวมคำสั่งเงื่อนไข:

Operator Description Example Try it
and  Returns True if both statements are true x < 5 and  x < 10
or Returns True if one of the statements is true x < 5 or x < 4
not Reverse the result, returns False if the result is true not(x < 5 and x < 10)

ตัวดำเนินการเอกลักษณ์ของ Python

ตัวดำเนินการข้อมูลประจำตัวใช้เพื่อเปรียบเทียบอ็อบเจ็กต์ ไม่ใช่ว่าเท่ากัน แต่ถ้าเป็นอ็อบเจ็กต์เดียวกันจริง ๆ โดยมีตำแหน่งหน่วยความจำเดียวกัน:

Operator Description Example Try it
is  Returns True if both variables are the same object x is y
is not Returns True if both variables are not the same object x is not y

ผู้ประกอบการสมาชิก Python

ตัวดำเนินการสมาชิกใช้เพื่อทดสอบว่ามีการแสดงลำดับในวัตถุหรือไม่:

Operator Description Example Try it
in  Returns True if a sequence with the specified value is present in the object x in y
not in Returns True if a sequence with the specified value is not present in the object x not in y

Python ตัวดำเนินการ Bitwise

ตัวดำเนินการระดับบิตใช้เพื่อเปรียบเทียบตัวเลข (ไบนารี):

Operator Name Description
AND Sets each bit to 1 if both bits are 1
| OR Sets each bit to 1 if one of two bits is 1
 ^ XOR Sets each bit to 1 if only one of two bits is 1
NOT Inverts all the bits
<< Zero fill left shift Shift left by pushing zeros in from the right and let the leftmost bits fall off
>> Signed right shift Shift right by pushing copies of the leftmost bit in from the left, and let the rightmost bits fall off

ทดสอบตัวเองด้วยแบบฝึกหัด

ออกกำลังกาย:

คูณ10ด้วย5และพิมพ์ผลลัพธ์

print(10  5)