print('Hello World❗👍')
name = input('please input your name: ')
message = 'Hello ' + name + ' !'
print(message)
println('jupyter note bookみたい')
NameError
name 'println' is not defined
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
/tmp/ipykernel_41/3470989661.py in <module>
----> 1 println('jupyter note bookみたい')
NameError: name 'println' is not defined
# matplotlib をインラインで使用することを指定する
%matplotlib inline
# ライブラリの読み込み
import matplotlib.pyplot as plt
# グラフを描画する
plt.plot([1,2,3,4])
plt.show()
import numpy as np
left = np.array([1, 2, 3, 4, 5])
height = np.array([100, 200, 300, 400, 500])
plt.bar(left, height)
plt.show()