มีวิธีง่าย ๆ ในการใช้ P-f-strings เพื่อกำหนดจำนวนหลักหลังจุดทศนิยมหรือไม่? (เฉพาะสตริง f ไม่ใช่ตัวเลือกการจัดรูปแบบสตริงอื่น ๆ เช่น. format หรือ%)
ตัวอย่างเช่นสมมติว่าฉันต้องการแสดงตัวเลข 2 หลักหลังจุดทศนิยม
ฉันจะทำอย่างไร สมมุติว่า
a = 10.1234
มีวิธีง่าย ๆ ในการใช้ P-f-strings เพื่อกำหนดจำนวนหลักหลังจุดทศนิยมหรือไม่? (เฉพาะสตริง f ไม่ใช่ตัวเลือกการจัดรูปแบบสตริงอื่น ๆ เช่น. format หรือ%)
ตัวอย่างเช่นสมมติว่าฉันต้องการแสดงตัวเลข 2 หลักหลังจุดทศนิยม
ฉันจะทำอย่างไร สมมุติว่า
a = 10.1234
คำตอบ:
รวมตัวระบุชนิดในนิพจน์รูปแบบของคุณ:
>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
f'input={value:#06x}'
และตัวอย่างวันที่{anniversary:%A, %B %d, %Y}
และ{date:%A}
เวลาทำ: และ ผมคิดว่าคำอธิบายที่สำคัญคือในรหัส Equivalenceส่วน
เมื่อพูดถึงfloat
ตัวเลขคุณสามารถใช้ตัวระบุรูปแบบ :
f'{value:{width}.{precision}}'
ที่อยู่:
value
เป็นนิพจน์ใด ๆ ที่ประเมินค่าเป็นตัวเลขwidth
ระบุจำนวนอักขระที่ใช้ทั้งหมดเพื่อแสดง แต่ถ้าvalue
ต้องการพื้นที่มากกว่าความกว้างที่ระบุจะมีการใช้พื้นที่เพิ่มเติมprecision
ระบุจำนวนอักขระที่ใช้หลังจุดทศนิยมสิ่งที่คุณขาดคือตัวระบุชนิดสำหรับค่าทศนิยมของคุณ ในลิงค์นี้คุณจะพบประเภทงานนำเสนอที่มีให้สำหรับทศนิยมและทศนิยม
ที่นี่คุณมีตัวอย่างโดยใช้f
ประเภทงานนำเสนอ (จุดคงที่):
# notice that it adds spaces to reach the number of characters specified by width
In [1]: f'{1 + 3 * 1.5:10.3f}'
Out[1]: ' 5.500'
# notice that it uses more characters than the ones specified in width
In [2]: f'{3000 + 3 ** (1 / 2):2.1f}'
Out[2]: '3001.7'
In [3]: f'{1.2345 + 4 ** (1 / 2):9.6f}'
Out[3]: ' 3.234500'
# omitting width but providing precision will use the required characters to display the number with the the specified decimal places
In [4]: f'{1.2345 + 3 * 2:.3f}'
Out[4]: '7.234'
# not specifying the format will display the number with as many digits as Python calculates
In [5]: f'{1.2345 + 3 * 0.5}'
Out[5]: '2.7344999999999997'
การเพิ่มคำตอบของRobᵩ: ในกรณีที่คุณต้องการพิมพ์จำนวนค่อนข้างมากการใช้ตัวคั่นหลักพันสามารถช่วยได้มาก (สังเกตเครื่องหมายจุลภาค)
>>> f'{a*1000:,.2f}'
'10,123.40'
ใช้ตัวระบุรูปแบบด้วยสตริง f ( เพิ่มเติมที่นี่ )
pi = 3.141592653589793238462643383279
print(f'The first 6 decimals of pi are {pi:.6f}.')
The first 6 decimals of pi are 3.141593.
grade = 29/45
print(f'My grade rounded to 3 decimals is {grade:.3%}.')
My grade rounded to 3 decimals is 64.444%.
from random import randint
for i in range(5):
print(f'My money is {randint(0, 150):>3}$')
My money is 126$
My money is 7$
My money is 136$
My money is 15$
My money is 88$
print(f'I am worth {10000000000:,}$')
I am worth 10,000,000,000$
a = 10.1234
print(f"{a:0.2f}")
ใน 0.2f:
วิดีโอรายละเอียดเกี่ยวกับ f-string สำหรับตัวเลข https://youtu.be/RtKUsUTY6to?t=606
สำหรับการปัดเศษ ...
import datetime as dt
now = dt.datetime(2000, 1, 30, 15, 10, 15, 900)
now_mil = round(now.microsecond/1000)
print(f"{now:%Y/%m/%d %H:%M:%S.}{now_mil:03}")
เอาต์พุต: 2000/01/30 15: 10: 15.001