Update 02.语言元素.md

pull/653/head
mahongzhe 2020-08-13 21:42:03 +08:00 committed by GitHub
parent cdb7fddd3a
commit 7301115d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ print('%.1f华氏度 = %.1f摄氏度' % (f, c))
> print(f'{f:.1f}华氏度 = {c:.1f}摄氏度')
> ```
#### 练习2输入圆的半径计算计算周长和面积。
#### 练习2输入圆的半径计算周长和面积。
参考答案:
@ -235,4 +235,4 @@ is_leap = year % 4 == 0 and year % 100 != 0 or \
print(is_leap)
```
> **说明**:比较运算符会产生布尔值,而逻辑运算符`and`和`or`会对这些布尔值进行组合,最终也是得到一个布尔值,闰年输出`True`,平年输出`False`。
> **说明**:比较运算符会产生布尔值,而逻辑运算符`and`和`or`会对这些布尔值进行组合,最终也是得到一个布尔值,闰年输出`True`,平年输出`False`。