Skip to content

Commit 220d0f3

Browse files
committed
Merge pull request realpython#444 from paulie4/master
python is strongly-typed but not statically-typed
2 parents 99e5404 + 54aa054 commit 220d0f3

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)