Skip to content

Commit ed1eb0e

Browse files
authored
Update Py程序设计.md
1 parent 756d2ce commit ed1eb0e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

JiChu/Py程序设计.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
# Python
1+
# Python语言程序设计(北京理工大学)
2+
3+
##第一周 基本语法元素
4+
案例1 温度转换程序
5+
```python
6+
Tempstr=input(''请输入带有符合的温度值'')
7+
if Tempstr[-1]in['F','f']:
8+
c=(eval(Tempstr[0:-1])-32)/1.8
9+
print(''
10+
```

0 commit comments

Comments
 (0)