Skip to content

Commit

Permalink
Format Python code with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 9, 2023
1 parent 4eb7aea commit 2f56169
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Collections/Collectionsnamedtuple.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"""

from collections import namedtuple
n=int(input())

n = int(input())
columns = ",".join(input().split())
Student = namedtuple("Student", columns)
data = []
Expand Down

0 comments on commit 2f56169

Please sign in to comment.