作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。
想改进这个问题?将问题更新为 on-topic对于堆栈溢出。
6年前关闭。
Improve this question
我已经在 stackoverflow 中完成了类似的问题,但找不到与我的问题相近的答案。在最后一行之前的第 3 行下面的代码中给出错误 -
NameError: name '_name_' is not defined
#!/usr/bin/python
from mininet.topo import Topo
from mininet.net import Mininet
from mininet.util import dumpNodeConnections
from mininet.log import setLogLevel
class SingleSwitchTopo(Topo):
“Single switch connected to n hosts.”
def_init_(self,n=2,**opts):
#initialize topology and default options
Topo._init_(self,**opts)
switch=self.addSwitch(‘s1’)
#Python’s range(N) generates 0..N-1
for h in range(n):
host=self.addHost(‘h%s’%(h+1))
self.addLink(host,switch)
def simpleTest():
“Create and test a simple network”
topo=SingleSwitchTopo(n=4)
net=Mininet(topo)
net.start
print “Dumping host connections”
dumpNodeConnections(net.hosts)
print “Testing network connectivity”
net.pingAll()
net.stop()
if _name_==’_main_’:
#Tell mininet to print useful information
setLogLevel(‘info’)
simpleTest()
最佳答案
问题是在线 -
if _name_==’_main_’:
name
的两侧添加双下划线以及
main
.并且看起来引号是错误的,您需要使用
'
.例子 -
if __name__=='__main__':
关于python - 名称错误 : name '_name_' is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31956594/
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Imp
我正在尝试字符串格式化-长字符串“替换字段名称”。但我收到“属性错误”。 我已经搜索了该错误,但没有类似的答案。 import math tmpl="This {mod._name_} module
我在无数 C/C++ 头文件和源文件中看到过这种情况。 除了个人喜好之外,这些不同符号中的每一个的含义是什么? _NAME __NAME _NAME_ __NAME__ NAME_t 老实说,我唯一理
我是一名优秀的程序员,十分优秀!