Hi I'm pretty new to coding world and I had a question about python versions. I'm watching online lectures and Youtube videos and learned that python 3 is the newest version. But codes that I am learning is what leetcode problems display as "python", not "python 3". For function headers, python 3 on leetcode shows
def twoSum(self, nums: List[int], target: int) -> List[int]:
instead of what I am introduced to,
def two_sum(list, int):
Can someone please help me with the confusion