以下のコードを実行すると

AttributeError: module 'tensorflow' has no attribute 'Session'

と表示されます。どうしてでしょうか?

import tensorflow as tf  
sess = tf.Session()
hello  = tf.constant('Hello')
print(sess.run(hello))