Skip to content

Commit 2f56169

Browse files
committed
Format Python code with Black
1 parent 4eb7aea commit 2f56169

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Collections/Collectionsnamedtuple.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"""
1010

1111
from collections import namedtuple
12-
n=int(input())
12+
13+
n = int(input())
1314
columns = ",".join(input().split())
1415
Student = namedtuple("Student", columns)
1516
data = []

0 commit comments

Comments
 (0)