编程语言
首页 > 编程语言> > 【Python】 Python 语言设计基础 - 第二章

【Python】 Python 语言设计基础 - 第二章

作者:互联网

Before we comb through the codes

《Python 语言程序设计基础》 高等教育出版社 - 第二版
Python Version 3.9.0 + Visual Studio 2019 / Visual Studio Code 1.52.1


Preparation

【Python】 下载 Python(Visual Studio 2019)的步骤
【Python】 Python 语言设计基础 - 第一章

示例代码 1.1

TempStr = input("Please input the temperature with the suffix C or F: ")
if TempStr[-1] in ['F', 'f']:
    C = (eval(TempStr[0: -1]) - 32) / 1.8
    print("It is equal to {:.2f}C".format(C))
elif TempStr[-1] in ['C', 'c']:
    F = 1.8 * eval(TempStr[0: -1]) + 32
    print("It is equal to {:.2f}F".format(F))
else:
    print("Grammatical error!")

Output:
S1.1


ALL RIGHTS RESERVED © 2021 Teddy van Jerry
欢迎转载,转载请注明出处。


See also

Teddy van Jerry 的导航页

标签:语言,Teddy,Python,Visual,TempStr,print,Studio,第二章
来源: https://blog.csdn.net/weixin_50012998/article/details/113826877