How can I check if the letter "N" is present in a string. Example:
flag = False
if string contains N:
   flag = True
So flag = True if string is "CNDDDNTD" and flag = False if string is "CCGGTTT". I think re.search will work, but not sure of the options to use.
 
    