Advertisement
Josif_tepe

Untitled

Oct 14th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. def main():
  2.     s = input("Vnesi stringot")
  3.  
  4.     for i in s:
  5.         print(i)
  6.  
  7.     print()
  8.     for i in range(0, len(s)):
  9.         print(s[i])
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. if __name__ == "__main__":
  17.     main()
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement