fork download
  1. s="CAAGGGGGGGGGGT"
  2. def ile(s):
  3. ile_A = 0;
  4. ile_C = 0;
  5. ile_G = 0;
  6. ile_T = 0;
  7. for i in s:
  8. if i == "A":
  9. ile_A += 1
  10. elif i == "C":
  11. ile_C += 1
  12. elif i == "G":
  13. ile_G += 1
  14. else:
  15. ile_T += 1
  16. return [ile_A, ile_C, ile_G, ile_T]
  17. print(ile(s))
Success #stdin #stdout 0.11s 14136KB
stdin
Standard input is empty
stdout
[2, 1, 10, 1]