import tensorflow as tfa=tf.constant(5)b=tf.constant([1.0,2.0,3.0])c=tf.constant([[1,2],[3,4]])print(type(c),c.shape)W = tf.Variable(initial_value=tf.random.normal([2, 2]), name='weights')print(W)