From 2f56169bb9fe814eec60a365dba876253057471c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 9 Feb 2023 21:33:28 +0000 Subject: [PATCH] Format Python code with Black --- Collections/Collectionsnamedtuple.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Collections/Collectionsnamedtuple.py b/Collections/Collectionsnamedtuple.py index 2a9fad9..6eb3015 100644 --- a/Collections/Collectionsnamedtuple.py +++ b/Collections/Collectionsnamedtuple.py @@ -9,7 +9,8 @@ """ from collections import namedtuple -n=int(input()) + +n = int(input()) columns = ",".join(input().split()) Student = namedtuple("Student", columns) data = []