1. 程式人生 > >python練習

python練習

eas lease 2.6 float please input 圓的面積 pri 練習

1.

>>> name=input("please input your name")
aa
>>> print(‘hi,%s.‘%name)
hi,aa.
>>>

2.

>>> a=input(‘input:‘)
input:1
>>> b=input("input:")
input:
2
>>> int(a)+int(b)
3

>>> print(‘sum %.1f‘ %(float(input(‘a:‘))+float(input(‘b:‘))))
a:1
b:2
sum 3.0

3.

>>> r=input(‘please input r:‘)
please input r:2
>>> print(‘這個圓的面積是:%.1f‘%((float(r)*float(r))*3.14))
這個圓的面積是:12.6

python練習