Skip to content

Commit

Permalink
Update content/python/concepts/dates/terms/strptime/strptime.md
Browse files Browse the repository at this point in the history
Co-authored-by: Mamta Wardhani <[email protected]>
  • Loading branch information
EduardoGallego94 and mamtawardhani authored Dec 30, 2024
1 parent 2454a0a commit 1bce30a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/python/concepts/dates/terms/strptime/strptime.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ datetime.strptime(date_string, format)
### Parameters:

- `date_string` (str): The string representing the date and/or time to be parsed..
- `format` (str): The format that defines the structure of `date_string`. This uses the directives from the `datetime` module (e.g., `%Y` for a four-digit year, `%m` for a two-digit month).
- `format` (str): A string that defines the structure of `date_string` using format codes from the `datetime` module (e.g., `%Y` for a four-digit year, `%m` for a two-digit month).

### Returns:

Expand Down

0 comments on commit 1bce30a

Please sign in to comment.