Basics of Python: Part 3 - Loops, If Statements

preview_player
Показать описание
Chapter 1 Part 2: Here we review loops, boolean logic, and if statements. Once again, this is short and non-comprehensive: I emphasize only the parts that will help us in numerical programming.

In a series of tutorial videos. we will go from knowing a little bit about python/programming to being able to derive, analyze, and solve complicated mathematical models using libraries such as numpy, scipy, sympy, and so much more.

This is a HANDS ON TUTORIAL. You need to open yourself up an interactive notebook, and not only code along, but experiment with various things. ENSURE that you understand something fully before moving on.

All code located here:
Рекомендации по теме
Комментарии
Автор

Feels great to be a subscriber of a creator with less than 1000 subs, who I feels is going miles!

souravyadav
Автор

These courses are just gems.Best platform for learning Python.

gautamsandesh
Автор

FYI at 3:00 you could use f-strings instead of format(). IMHO its a more clean way to format strings and would look like this:
print(f'Index {i} contains {item}')

kekskekskeks
Автор

isnt there a little mistake at minute 10:15? I feel like in case we put 'dt' in the if statement we had to change the 'at' in the elif line as well to get the final result 'no' instead of 'only condition one is true'

FinnGottlich
Автор

Your explanations are pretty fast paced; had to pause and rewind the video a couple of times. Thanks though!

JackTR
Автор

whats the best book to master python???

harp-
Автор

lst = [1**3 for i in range(21)] is not working. It gave me invalid syntax error

Fasctt