Advertisement
Josif_tepe

Untitled

Sep 28th, 2024
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. def main():
  2.     n = int(input("Vnesi golemina na niza: "))
  3.     niza = []
  4.    
  5.  
  6.     for i in range(0, n):
  7.         niza.append(int(input(f"niza[{i}]=")))
  8.  
  9.     print(niza)
  10.  
  11.  
  12. if __name__ == "__main__":
  13.     main()
  14.  
  15.  
  16.  
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement