第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在類對(duì)象中引發(fā)“dtype”參數(shù)錯(cuò)誤

如何在類對(duì)象中引發(fā)“dtype”參數(shù)錯(cuò)誤

拉莫斯之舞 2023-06-27 13:09:08
我有以下代碼:import numpy as npclass circle(object):    def __init__(self, radius=3, color='blue', data_type=np.float64):   # default values        self.radius = radius        self.color = color         self.data_type = data_type            if self.data_type not in [np.float32, np.float64]:        raise ValueError('data_type should be np.float32 or np.float64 only')            def add_radius(self, r):        self.radius = self.radius + np.ceil(r, dtype=self.data_type)        return(self.radius)    redcircle = circle(radius=10, color='red', data_type=np.float32)redcircle.add_radius(2.323) 當(dāng)我運(yùn)行代碼時(shí),出現(xiàn)以下錯(cuò)誤:---------------------------------------------------------------------------NameError                                 Traceback (most recent call last)<ipython-input-39-27704fa7e57b> in <module>----> 1 class circle(object):      2     def __init__(self, radius=3, color='blue', data_type=np.float64):   # default values      3         self.radius = radius      4         self.color = color      5         self.data_type = data_type<ipython-input-39-27704fa7e57b> in circle()      5         self.data_type = data_type      6 ----> 7     if self.data_type not in [np.float32, np.float64]:      8         raise ValueError('dtype should be np.float32 or np.float64 only')      9 NameError: name 'self' is not defined如何在類對(duì)象中指定參數(shù),以便在指定的參數(shù)值不是類對(duì)象所接受的值dtype時(shí)引發(fā)錯(cuò)誤?dtype如果有人知道的話,非常感謝。
查看完整描述

1 回答

?
函數(shù)式編程

TA貢獻(xiàn)1807條經(jīng)驗(yàn) 獲得超9個(gè)贊

Python 的結(jié)構(gòu)完全由縮進(jìn)級(jí)別控制:


class circle(object):

    def __init__(self, radius=3, color='blue', data_type=np.float64):   # default values

        self.radius = radius

        self.color = color 

        self.data_type = data_type

        # Python assumes this is the end of the __init__ function


    # because this next line is at the next higher level

    if self.data_type not in [np.float32, np.float64]:

        raise ValueError('data_type should be np.float32 or np.float64 only')

    

    # so the above is a fragment that will not run in __init__. 


    def add_radius(self, r):

        self.radius = self.radius + np.ceil(r, dtype=self.data_type)

        return(self.radius)

這是否回答你的問題?


查看完整回答
反對(duì) 回復(fù) 2023-06-27
  • 1 回答
  • 0 關(guān)注
  • 187 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)