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

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 รับ ()วิธี การ

❮ โมดูลคำขอ


ตัวอย่าง

ส่งคำขอไปยังหน้าเว็บและส่งคืนรหัสสถานะ:

import requests

x = requests.get('https://w3schools.com')
print(x.status_code)

ความหมายและการใช้งาน

get()เมธอดส่งคำขอ GET ไปยัง url ที่ระบุ


ไวยากรณ์

requests.get(url, params={key: value}, args)

args หมายถึงอาร์กิวเมนต์ที่มี ชื่อเป็นศูนย์หรือมากกว่าในตารางพารามิเตอร์ด้านล่าง ตัวอย่าง:

requests.get(url, timeout=2.50)

ค่าพารามิเตอร์

Parameter Description
url Required. The url of the request
params Optional. A dictionary, list of tuples or bytes to send as a query string.
Default None
allow_redirects Optional. A Boolean to enable/disable redirection.
Default True (allowing redirects)
auth Optional. A tuple to enable a certain HTTP authentication.
Default None
cert Optional. A String or Tuple specifying a cert file or key.
Default None
cookies Optional. A dictionary of cookies to send to the specified url.
Default None
headers Optional. A dictionary of HTTP headers to send to the specified url.
Default None
proxies Optional. A dictionary of the protocol to the proxy url.
Default None
stream Optional. A Boolean indication if the response should be immediately downloaded (False) or streamed (True).
Default False
timeout Optional. A number, or a tuple, indicating how many seconds to wait for the client to make a connection and/or send a response.
Default None which means the request will continue until the connection is closed
verify
Optional. A Boolean or a String indication to verify the servers TLS certificate or not.
Default True

คืนมูลค่า

เมธอด get() ส่งคืน อ็อบเจ็กต์ การร้องขอ


❮ โมดูลคำขอ