摘要: # 1.首先进入官网下载软件 (防止电脑变卡尽量不要安装在c盘,然后一直next ):https://www.sublimetext.com/ # 2.安装Package Control管理插件 使用ctrl + ` (感叹后左边的那个键位),输入以下内容 import urllib.request 阅读全文
posted @ 2021-06-11 19:15 Uriel-w 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1 #1.温度的转换 2 a = float(input('请输入华氏温度')) 3 b = (a - 32) /1.8 4 print('%.1f华氏度=%.1f摄氏度' %(a,b)) 5 6 #2.根据半径求圆的周长和面积 7 a = float(input('输入半径')) 8 s = 3. 阅读全文
posted @ 2021-06-11 13:28 Uriel-w 阅读(57) 评论(0) 推荐(0) 编辑