python勉強中 Python

python勉強中なのだけど、そのメモ

# 以下の1行と、下4行は同じ
list_a = [get_function( each_c ) for each_c in list_b]

# 空リストを作成
list_a = []
for x in list_b :
x2 = get_function(x)
list_a.append( x2 )



pythonの機械学習の前に数学やらないとね
<a href= http://codestudyvideo.com/techv/20210926/edureka/5/Python%20for%20Machine%20L.html target= _blank >Python for Machine Learning</a>