Python学习笔记(一)

版本Python 2.7。

A.Python初印象

print 'hello world'

B.Python初体验

对于字符输入使用raw_input方法,可以在外层使用int来确定输入数据类型。

#汇率 兑换
RMB_amount = int(raw_input('input your money:'))
HK_ex = 0.84
US_ex = 6.4
HK_amount = RMB_amount / HK_ex
US_amount = RMB_amount  / US_ex
print 'you can change your money for',US_amount,'$ or',HK_amount,'HK$'

 

 

posted @ 2013-04-21 21:30  丶Blank  阅读(199)  评论(0编辑  收藏  举报