initials of name
def abbrev_name(name):
s1 , s2 = name.split(" ")
s3 = s1[:1],s2[:1]
return '.'.join(s3).upper()
initials of name
def abbrev_name(name):
s1 , s2 = name.split(" ")
s3 = s1[:1],s2[:1]
return '.'.join(s3).upper()
initials of name
# takes name(name and sirname) and return initals
def abbrevName(name):
return '.'.join(w[0] for w in name.split()).upper()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us