python_training_0a

To accommodate to the team’s real learning process, inserting middle sessions here.

first check if i can do video recording, microphone effect, show the portrait

jupyternotebook installation encounter issues, the attitude and method, using google as your best friend to solve the problem is very praisable. as alluded before, tech within this arena grows or changes rapidly, so right after, I dabbled through colab by google and gathered it’s a better platform for you presently and in the future. The key features are easy to get onto, to save to share, and embedded packages esp. machine learning modules. tensorflow.

Interactive prompt blinking ready to go, try and test out first several lines of coding. comments started with pound sign. interpretive relative to traditional language that use compiler to run or execute all at once.

Today’s focus would be numbers, strings and lists. follow the org textbook.

difference between list, tuple, and set.

A simple fibonacci sequence program.

>>> a, b = 0, 1
>>> while a < 1000:
...     print(a, end=',')
...     a, b = b, a+b

data science book to follow. by wes mckny

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.