摘要:
【Question】: TensorFlow has two ways to evaluate part of graph: Session.run on a list of variables and Tensor.eval. Is there a difference between these 阅读全文
摘要:
一、 range(start,end,step) 二、代码 【code1】 for i in range(1,10,2): print("i=",i) 【result1】 i= 1 i= 3 i= 5 i= 7 i= 9 【code2】 for i in range(4): print("i=",i 阅读全文