Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 295 Bytes

File metadata and controls

15 lines (9 loc) · 295 Bytes

learning-python

learning pyton for beginerrs

name=input("hello please enter your name : ") age =int(input("hello please enter your age : "))

def get_year(age): return 2022 -age

champ=("hello "+name) new_you=(" you were born in the year " +str(get_year(age))) print(champ + new_you)