diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst
index a0c9f63ab9f957..69c4dfc422c98e 100644
--- a/Doc/library/platform.rst
+++ b/Doc/library/platform.rst
@@ -63,7 +63,7 @@ Cross Platform
    string is returned if the value cannot be determined.
 
 
-.. function:: platform(aliased=0, terse=0)
+.. function:: platform(aliased=False, terse=False)
 
    Returns a single string identifying the underlying platform with as much useful
    information as possible.
diff --git a/Lib/platform.py b/Lib/platform.py
index 2dfaf76252db51..f2b0d1d1bd3f5d 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -1246,7 +1246,7 @@ def python_compiler():
 
 _platform_cache = {}
 
-def platform(aliased=0, terse=0):
+def platform(aliased=False, terse=False):
 
     """ Returns a single string identifying the underlying platform
         with as much useful information as possible (but no more :).
diff --git a/Misc/NEWS.d/next/Library/2023-02-26-12-37-17.gh-issue-91038.S4rFH_.rst b/Misc/NEWS.d/next/Library/2023-02-26-12-37-17.gh-issue-91038.S4rFH_.rst
new file mode 100644
index 00000000000000..2667ff120fd402
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-02-26-12-37-17.gh-issue-91038.S4rFH_.rst
@@ -0,0 +1 @@
+:meth:`platform.platform` now has boolean default arguments.