인프런 영문 브랜드 로고
인프런 영문 브랜드 로고
Programming

/

Programming Language

[PY 0201] Python Level 1 for Artificial Intelligence

This is a lecture that provides a lot of practice on the basic grammar of Python. This is a lecture that provides practical practice used in machine learning and deep learning along with the grammar of Python.

(5.0) 9 reviews

171 students

Python
AI
Thumbnail

Exercise.114, 115 Error Correction

sum([u_el** 0.5 for u_el in u])**0.5

In , change 0.5 to 2

sum([u_el** 2 for u_el in u])**0.5

It should be written like this.

Comment