Python里的在中间的”句号”是怎么打出来的
求助!这个是句号吗?
原文:
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
常量 PI 的值近似为 3.142。
我打普通的“句号”运行不出来!
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
常量 PI 的值近似为 {0:.3f}
回答
拷贝到别的文本编辑器里放大看看。
求助!这个是句号吗?
原文:
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
常量 PI 的值近似为 3.142。
我打普通的“句号”运行不出来!
import math
print('常量 PI 的值近似为 {0:.3f}。'.format(math.pi))
常量 PI 的值近似为 {0:.3f}
拷贝到别的文本编辑器里放大看看。