码迷,mamicode.com
首页 > 其他好文 > 详细

02 Transcribing DNA into RNA

时间:2017-07-29 15:12:37      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:problem   bin   tput   order   acid   pytho   set   uac   tran   

Problem

An RNA string is a string formed from the alphabet containing ‘A‘, ‘C‘, ‘G‘, and ‘U‘.

Given a DNA string tt corresponding to a coding strand, its transcribed RNA string uu is formed by replacing all occurrences of ‘T‘ in tt with ‘U‘ in uu.

Given: A DNA string tt having length at most 1000 nt.

Return: The transcribed RNA string of tt.

Sample Dataset

GATGGAACTTGACTACGTAAATT

Sample Output

GAUGGAACUUGACUACGUAAAUU


方法一
str = ‘GATGGAACTTGACTACGTAAATT‘
print str.replace(‘T‘,‘U‘)

  

02 Transcribing DNA into RNA

标签:problem   bin   tput   order   acid   pytho   set   uac   tran   

原文地址:http://www.cnblogs.com/think-and-do/p/7255658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!