1. 简单粗鲁的字符串拼接 1 name = "abc" 2 age = 25 3 info = "the name is "+name +"\nthe age is " + str(age) 4 print(info) 运行结果: 2.% name = "abc" age = 25 info = "the name is %s \nthe age is %s"%(name ,age) print(info
Bash中的变量1.用户定义的变量变量的定义 用户定义的变量有字母数字及下划线组成,并且变量名的第一个字符不能为数字. 与其它UNIX名字一样,变量名是大小写敏感的. 对于变量,用户可按如下方式赋值: name = value 变量的引用 在引用变量时,需在前面加$符号,用户也可以在变量间进行相互赋值(一个变量的值赋给另一个变量),如: (前面的$是命令提示符)
[less中的变量]1.声明变量:@变量名:变量值:使用变量:@变量名:[less中变量的类型]1.数字 数字px2.字符串:无引号字符串 red blue 有引号 "haha"3.颜色 red #000000 rgb()4.值列表类型:用逗号或空格分隔2px solid green[变量使用原则]多次频繁出现的值.需要修改的值,设为变量[混合MiXin]1.无参混合声明: .name{} 选择器调用:.name:2.带参混合无默认值混合: .name(@param){} 调用:.n
''' Created on Apr 21, 2017 @author: P0079482 ''' #如何通过tf.variable_scope函数来控制tf.ger_variable函数获取已经创建过的变量 #在名字为foo的命名空间内创建名字为v的变量 import tensorflow as tf with tf.variable_scope("foo"): v = tf.get_variable("v",shape=[1],initializer=tf.co