Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise: Type Conversion

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-03T22:09:16.089691Z

Updated

2025-11-03T22:09:16.089691Z

# Exercise: Type Conversion
birth_year = int(input('What year were you born ?'))

age = 2025 - birth_year
print(f"\nYour age is: {age}")







INFO