编程语言
首页 > 编程语言> > 浙大版《Python程序设计》题目集

浙大版《Python程序设计》题目集

作者:互联网

第1章-1 从键盘输入两个数,求它们的和并输出

a = input()
b= input()
c = eval(a)+eval(b)
print(c)

第1章-2 从键盘输入三个数到a,b,c中,按公式值输出

方法一
a,b,c = map(int,input().split())
print(b*b-4*a*c)
方法二
a,b,c = [int(i) for i in input().split()]
print(b*b-4*a*c)

第1章-3 输出“人生苦短,我学Python”

print("人生苦短,我学python")

标签:Python,我学,浙大,int,input,print,程序设计,苦短
来源: https://www.cnblogs.com/centimeter73/p/15450991.html