Jump to content

3749771

Veteran Driver IV
 TruckersMP Profile
  • Posts

    577
  • Joined

  • Last visited

  • Days Won

    49

Everything posted by 3749771

  1. Happy Birthday!

  2. Congratulations! 

  3. Happy Birthday!

  4. Happy Birthday!

    1. XeoNN

      XeoNN

      Thank you Werzey 🥰

  5. Happy Birthday!

  6. Happy Birthday!

  7. def get_combinations(list1, list2): combinations = [] for item1 in list1: index = 0 while index < len(list2): combinations.append((item1, list2[index])) index += 1 return combinations # 두 개의 리스트로 조합 계산 list1 = [1, 2, 3] list2 = ['a', 'b', 'c'] result = get_combinations(list1, list2) # 결과 출력 for combination in result: print(combination)

  8. Congratulations on your promotion!

  9. Thanks for the follow!

  10. Happy Birthday!

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.