month = input("Insert current month:")
print("Month name: ",month)
print("First letter: ",month[0])
print("Third letter: ",month[2])
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
month = input("Insert current month:")
print("Month name: ",month)
print("First letter: ",month[0])
print("Third letter: ",month[2])