Discussion about this post

User's avatar
Pranay Pallav's avatar

A great write up. An effective description of Scalar and Vectors.

An aside: The print statements written as f strings look much more elegant and are easier to follow:

print("x has value {} and is of type {} and has shape {}".format(x,type(x),len(x)))

print(f"x has value {x} and is of type {type(x)} and has shape {len(x)}.")

I find the f strings more intuitive to follow.

Pranay Pallav

Expand full comment

No posts