Advertisement
ALEXANDAR_GEORGIEV

Function_atribute

Jun 11th, 2022
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.41 KB | None | 0 0
  1. def get_next_from_list_a_up():
  2.     if not hasattr(get_next_from_list_a_up, "idx"):
  3.         get_next_from_list_a_up.idx = 0
  4.     if not get_next_from_list_a_up.idx < len(list_a_up):
  5.         get_next_from_list_a_up.idx = 0
  6.     value_to_return = list_a_up[get_next_from_list_a_up.idx]
  7.     get_next_from_list_a_up.idx += 1
  8.     return value_to_return
  9.  
  10. # def b_upp(b_up):
  11. #     pass
  12.  
  13. #max_x = int(input())
  14. #max_y = int(input())
  15. #max_pass = int(input())
  16. # list_draft = []
  17. # # Генериране на необходимите символи 35 - 55
  18. list_a_up = []
  19. for a_up in range(35, 56):
  20.     list_a_up.append(chr(a_up))     # ['#', '$', '%', '&', "'", '(', ')', '*', '+', ',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6', '7']
  21. # # Генериране на необходимите символи 64 - 96
  22. # list_b_up = []
  23. # for b_up in range(64, 97):
  24. #     list_b_up.append(chr(b_up))     # ['@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '[', '\\', ']', '^', '_', '`']
  25. # # Генериране на необходимите числа х = 1 - а
  26. # list_x = []
  27. # for x in range(1, a + 1):
  28. #     list_x.append(x)
  29. # # Генериране на необходимите числа y = 1 - b
  30. # list_y = []
  31. # for y in range(1, b + 1):
  32. #     list_draft.append(y)
  33.  
  34. print(get_next_from_list_a_up())
  35. print(get_next_from_list_a_up())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement