我们在运行python脚本时遇到错误报错 IndentationError: unexpected indent。
如下图:
>>> with tf.variable_scope("",reuse=True): file "", line 1 with tf.variable_scope("",reuse=True): ^IndentationError: unexpected indent
原因
字母意思就是不希望有缩进,去掉空格和tab。
看看我们的代码如下:
发现第一行没有顶格写,python 对代码的格式要求很严格,python没有分号,用严格的缩进表示上下级从属层级关系,第一行需要顶格写,然后根据冒号:后续的代码行需要有缩进,并且有层级。
解决方式
把报错行多余的缩进删除即可。
符合代码的格式要求:第一行需要定格写,然后根据冒号:之后的代码行需要有缩进,并且有层级,第二个冒号后面的代码不能超过第一个冒号后面的代码。同样的缩进表示同一个层级。
2.IndentationError: expected an indented block
>>> import tensorflow as tf>>> g1 = tf.Graph()>>> with g1.as_default():... v=tf.get_variable("v",iinitializer=tf.zeros_initializer(shape=[1])) file "", line 2 v=tf.get_variable("v",iinitializer=tf.zeros_initializer(shape=[1])) ^IndentationError: expected an indented block
期望有缩进
总结以上是内存溢出为你收集整理的TensorFlow工作笔记003---python异常大全IndentationError: unexpected indent_expected indented block全部内容,希望文章能够帮你解决TensorFlow工作笔记003---python异常大全IndentationError: unexpected indent_expected indented block所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)