not defined中文翻譯,not defined是什么意思,not defined發(fā)音、用法及例句
1、not defined
not defined發(fā)音
英: 美:
not defined中文意思翻譯
常見(jiàn)釋義:
沒(méi)有定義
not defined雙語(yǔ)使用場(chǎng)景
1、This can happen when the mapping information is not defined according to the mapping schema.───如果映射信息不是根據映射架構定義的,則會(huì )出現這種情況.
2、This can happen when the conceptual model is not defined according to the conceptual model schema.───如果概念模型不是根據概念模型架構定義的,則會(huì )出現這種情況.
3、The attribute type specified to the directory service is not defined.───指定給目錄服務(wù)的屬性類(lèi)型未定義.
4、The format and meaning of the extension header are not defined.───格式和擴展標頭的含義是未定義的.
5、Non - conformings are marked with formal but not defined means, as pencil or tapes.───對有缺陷品作正式但無(wú)定義的標示, 例如用鉛筆或膠紙.
6、The opening definitions are framed in terms of concepts that are not defined.───開(kāi)頭幾個(gè)定義是用未經(jīng)定義的概念來(lái)講的.
7、Most of the bookbiding is not defined for their respective bookbiding style of page size.───大多數的裝訂方式都定義了適合各自裝訂方式的頁(yè)邊尺寸.
8、Not defined by particular standards or codes.───未被特定的標準和規范定義。
9、Note that the sample variance is not defined for.───注意,對于樣本方差無(wú)定義.
10、At present, the concept of administrative omission has not defined finally in our country.───行政不作為的概念目前在我國尚未有定論.
11、Environment variable ORACLE _ SID not defined. Please define it.───我的環(huán)境變量在哪定義?
12、At the origin, the vector field is not defined.───在原點(diǎn),向量場(chǎng)是沒(méi)有意義的。
13、Learn that you are not defined by work.───記住,你不是因為工作而才成為你。
not defined相似詞語(yǔ)短語(yǔ)
1、predefined───adj.[計]預先定義的;v.預先確定(predefine的過(guò)去式)
2、defined───adj.界定的;清晰的,輪廓分明的;v.下定義;明確;使輪廓分明(define的過(guò)去式和過(guò)去分詞)
3、to define───下定義
4、misdefined───錯誤定義
5、ultrarefined───超精
6、undefined───adj.不明確的;未下定義的
7、well defined───輪廓分明的;意義明確的
8、redefined───adj.重新定義的;vt.對…再加以解說(shuō);再給…下定義(redefine的過(guò)去分詞)
9、ill-defined───adj.不清楚的;定義不清晰的
2、python __all__ is not defined是什么原因
首先得明白:
某個(gè)模塊可以提供一個(gè)__all__ 變量,該變量的值是一個(gè)列表,存儲的是當前模塊中一些成員(變量、函數或者類(lèi))的名稱(chēng)。通過(guò)在模塊文件中設置 __all__ 變量,當其它文件以“from 模塊名 import *”的形式導入該模塊時(shí),該文件中只能使用 __all__ 列表中指定的成員。
也就是說(shuō),只有以“from 模塊名 import *”形式導入的模塊,當該模塊設有 __all__ 變量時(shí),只能導入該變量指定的成員,未指定的成員是無(wú)法導入的。
所以,要使用__all__,得滿(mǎn)足以下條件:
1.
模塊定義了__all__變量
2.
導入了模塊或從模塊導入了__all__
使用舉例:
1.
import random
print(random.__all__)
2.
from random import __all__
print(__all__)
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。