Skip to content

Commit 54aa054

Browse files
committed
python is strongly-typed but not statically-typed
1 parent 25cf08d commit 54aa054

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ Dynamic typing
317317
Python is said to be dynamically typed, which means that variables
318318
do not have a fixed type. In fact, in Python, variables are very
319319
different from what they are in many other languages, specifically
320-
strongly-typed languages. Variables are not a segment of the computer's
320+
statically-typed languages. Variables are not a segment of the computer's
321321
memory where some value is written, they are 'tags' or 'names' pointing
322322
to objects. It is therefore possible for the variable 'a' to be set to
323323
the value 1, then to the value 'a string', then to a function.

0 commit comments

Comments
 (0)