はじめに
Python では、日付を様々な形式で表すことができます。そのような形式の 1 つは ISO-8601 形式で、日付と時刻を表すための標準形式です。このチャレンジでは、ISO-8601 形式で表された日付を datetime.datetime
オブジェクトに変換するタスクを与えられます。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python(("Python")) -.-> python/ModulesandPackagesGroup(["Modules and Packages"])
python(("Python")) -.-> python/PythonStandardLibraryGroup(["Python Standard Library"])
python/BasicConceptsGroup -.-> python/comments("Comments")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
python/ModulesandPackagesGroup -.-> python/importing_modules("Importing Modules")
python/ModulesandPackagesGroup -.-> python/using_packages("Using Packages")
python/ModulesandPackagesGroup -.-> python/standard_libraries("Common Standard Libraries")
python/PythonStandardLibraryGroup -.-> python/date_time("Date and Time")
subgraph Lab Skills
python/comments -.-> lab-13645{{"ISO 日付を変換する"}}
python/function_definition -.-> lab-13645{{"ISO 日付を変換する"}}
python/importing_modules -.-> lab-13645{{"ISO 日付を変換する"}}
python/using_packages -.-> lab-13645{{"ISO 日付を変換する"}}
python/standard_libraries -.-> lab-13645{{"ISO 日付を変換する"}}
python/date_time -.-> lab-13645{{"ISO 日付を変換する"}}
end