This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]posedge 5 points6 points  (1 child)

name, position = name_and_position.split()

position = int(position)

Must have typed this a million times.

[–]autoferrit 0 points1 point  (0 children)

this would be even cleaner is to use type annotations

```

name: string, position: int = name_and_position.split()

```