python核心编程第六章练习6-13

6-13.
字符串.string模块包含三个函数,atoi(),atol()和atof(),他们分别负责把字符串转换成整型、长整型和浮点型数字。从Python 1.5起,Python的内建函数int()、long()、float()也可以做同样的事了,本文来,complex()函数可以把字符串转换成复数(然而1.5之前,这些转换函数只能工作于数字之上)自博客园。
string模块中并没有实现一个atoc()函数,那么你来实现一个atoc(),接受单个字符串做参数输入,一个表示复数的字符串,例如'-1.23e+4-5.67j',返回相应的复数对象。你不能用eval()函数,但可以使用complex()函数,而且你只能在如下的限制之下使用:complex():complex(real, imag)的real和imag都必须是浮点值。
【答案】
代码如下:

def atoc(input):
    
    real = complex(input).real
    imag = complex(input).imag
    print 'complex real is:',real
    print 'complex imag is:',imag
    

input = raw_input('please input a complex number: ')
atoc(input)

  

posted @ 2015-07-10 16:27  Kaivenblog  阅读(208)  评论(0编辑  收藏  举报