Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # b_t_sta
  2.  
  3. x=0
  4.  
  5. pas="batista"
  6.  
  7. pasbir=["b","a","t","i","s","t","a"]
  8.  
  9. worldlist=["b","_","t","_","s","t","a"]
  10.  
  11. oluşturulacakmetinbelgesi=""
  12.  
  13. alfabe=["a","b","c","ç","d","e","f","g","ğ",
  14. "h","ı","i","j","k","l","m","n","o","ö","p",
  15. "r","s","ş","t","u","ü","v","y","z"]
  16.  
  17.  
  18. while x<=6:
  19.  
  20. if worldlist[x]==pasbir[x]:
  21.  
  22. print("SIRALI SONUÇ:",worldlist[x])
  23. oluşturulacakmetinbelgesi+=worldlist[x]
  24. x+=1
  25. else:
  26. for i in alfabe:
  27. worldlist[x]=i
  28. if worldlist[x]==i:
  29. oluşturulacakmetinbelgesi+=worldlist[x]
  30. break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement