求助!这个是句号吗?
原文:
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
常量 PI 的值近似为 3.142。
我打普通的“句号”运行不出来!
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
常量 PI 的值近似为 {0:.3f}
拷贝到别的文本编辑器里放大看看。
是句号! 在VS Code里输入正确!
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
print('常量 PI 的值近似为 {0:.5f}。'.format(math.pi))
常量 PI 的值近似为 3.142。
常量 PI 的值近似为 3.14159。
你提问的文本,贴出来就是中文句号
print(ord("。"))