浙大版《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")
posted @ 2021-10-24 14:24  闲晚  阅读(121)  评论(0)    收藏  举报