You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
that asks Python to run the [function]({{ page.root }}/reference.html#function) `loadtxt` which
72
72
belongs to the `numpy` library.
73
-
This [dotted notation]({{ page.root }}/reference.html#dotted-notation)
74
-
is used everywhere in Python: the thing that appears before the dot contains the thing that
75
-
appears after.
73
+
The dot notation in Python is used most of all as an object attribute/property specifier or for invoking its method. `object.property` will give you the object.property value,
74
+
`object_name.method()` will invoke on object_name method.
76
75
77
76
As an example, John Smith is the John that belongs to the Smith family.
78
77
We could use the dot notation to write his name `smith.john`,
0 commit comments