99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀Python復(fù)數(shù)屬性和方法運算操作示例
Python復(fù)數(shù)屬性和方法運算操作示例
2018-01-29
收藏

Python復(fù)數(shù)屬性和方法運算操作示例

這篇文章主要介紹了Python復(fù)數(shù)屬性和方法運算操作,結(jié)合實例形式分析了Python復(fù)數(shù)運算相關(guān)操作技巧,代碼注釋備有詳盡說明,

分享給大家供大家參考,具體如下:    
#coding=utf8
'''''
復(fù)數(shù)是由一個實數(shù)和一個虛數(shù)組合構(gòu)成,表示為:x+yj
一個負數(shù)時一對有序浮點數(shù)(x,y),其中x是實數(shù)部分,y是虛數(shù)部分。
Python語言中有關(guān)負數(shù)的概念:
1、虛數(shù)不能單獨存在,它們總是和一個值為0.0的實數(shù)部分一起構(gòu)成一個復(fù)數(shù)
2、復(fù)數(shù)由實數(shù)部分和虛數(shù)部分構(gòu)成
3、表示虛數(shù)的語法:real+imagej
4、實數(shù)部分和虛數(shù)部分都是浮點數(shù)
5、虛數(shù)部分必須有后綴j或J
復(fù)數(shù)的內(nèi)建屬性:
復(fù)數(shù)對象擁有數(shù)據(jù)屬性,分別為該復(fù)數(shù)的實部和虛部。
復(fù)數(shù)還擁有conjugate方法,調(diào)用它可以返回該復(fù)數(shù)的共軛復(fù)數(shù)對象。
復(fù)數(shù)屬性:real(復(fù)數(shù)的實部)、imag(復(fù)數(shù)的虛部)、conjugate()(返回復(fù)數(shù)的共軛復(fù)數(shù))
'''
class Complex(object):
  '''''創(chuàng)建一個靜態(tài)屬性用來記錄類版本號'''
  version=1.0
  '''''創(chuàng)建個復(fù)數(shù)類,用于操作和初始化復(fù)數(shù)'''
  def __init__(self,rel=15,img=15j):
    self.realPart=rel
    self.imagPart=img
  #創(chuàng)建復(fù)數(shù)
  def creatComplex(self):
    return self.realPart+self.imagPart
  #獲取輸入數(shù)字部分的虛部
  def getImg(self):
    #把虛部轉(zhuǎn)換成字符串
    img=str(self.imagPart)
    #對字符串進行切片操作獲取數(shù)字部分
    img=img[:-1]
    return float(img)
def test():
  print "run test..........."
  com=Complex()
  Cplex= com.creatComplex()
  if Cplex.imag==com.getImg():
    print com.getImg()
  else:
    pass
  if Cplex.real==com.realPart:
    print com.realPart
  else:
    pass
  #原復(fù)數(shù)
  print "the religion complex is :",Cplex
  #求取共軛復(fù)數(shù)
  print "the conjugate complex is :",Cplex.conjugate()
if __name__=="__main__":
  test()

運算結(jié)果:

數(shù)據(jù)分析咨詢請掃描二維碼

若不方便掃碼,搜微信號:CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個參數(shù)驗證碼對象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺檢測極驗服務(wù)器是否宕機 new_captcha: data.new_captcha, // 用于宕機時表示是新驗證碼的宕機 product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計時完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }