ในบทความนี้ เราจะมาเรียนรู้เกี่ยวกับฟังก์ชั่น Log ใน Python 3.x หรือก่อนหน้านี้ ที่นี่เราจะสังเกตเกี่ยวกับรูปแบบต่าง ๆ ของค่าล็อกจะแตกต่างกันตามฐาน ตอนนี้ เรามาพูดถึงการใช้ฟังก์ชันบันทึกในไลบรารีมาตรฐานของ Python
ต่อไปนี้คือตัวอย่างเพื่อแสดงให้เห็นรูปแบบต่างๆ ของฟังก์ชันบันทึกที่มีอยู่ในภาษา Python
ขั้นแรก มาดูวิธีการใช้โมดูลคณิตศาสตร์กัน
>>> import math
หลังจากนำเข้าแล้ว เราจะสามารถใช้ฟังก์ชันทั้งหมดที่มีอยู่ในโมดูลคณิตศาสตร์ได้
ทีนี้มาดูการใช้งานกัน
ตัวอย่าง
import math # log base e print ("Natural log of 56 is : ",math.log(56)) # log base 8 print ("Log base 8 of 64 is : ",math.log(64,8)) #log base 2 print ("Log base 2 of 12 is : ",math.log2(12)) # log base 10 print ("Log base 10 of 64 is : ",math.log10(64)) # log base value+1 print ("Logarithm 5 value of 4 is : ",math.log1p)4))
ผลลัพธ์
Natural log of 56 is : 4.02535169073515 Log base 8 of 64 is : 2.0 Log base 2 of 12 is : 3.584962500721156 Log base 10 of 64 is : 1.806179973983887 Logarithm 5 value of 4 is : 1.6094379124341003
การจัดการข้อผิดพลาดในกรณีของฟังก์ชันบันทึก -
เมื่อเราระบุค่าลบใด ๆ ภายในข้อผิดพลาดค่าฟังก์ชันบันทึกจะเพิ่มขึ้น นี่เป็นเพราะลอการิทึมของค่าลบ ii ไม่ได้กำหนดไว้ในโดเมนของคณิตศาสตร์
มาลองใช้ฟังก์ชันสำหรับค่าลบกัน −
ตัวอย่าง
import math # log base e print ("Natural log of 56 is : ",math.log(56)) # log base 8 print ("Log base 8 of 64 is : ",math.log(64,8)) #log base 2 print ("Log base 2 of 12 is : ",math.log2(12)) # log base 10 print ("Log base 10 of 64 is : ",math.log10(64)) # log base value+1 print ("Logarithm 5 value of 4 is : ",math.log1p)4))
บทสรุป
ในบทความนี้ เราได้เรียนรู้เกี่ยวกับฟังก์ชันบันทึกใน Python ใน Python 3.x หรือก่อนหน้านั้น