Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey🌳😊
Links to Python zip() Function 본문
Join two tuples together:
a = ("John", "Charles", "Mike")
b = ("Jenny", "Christy", "Monica")
x = zip(a, b)
#use the tuple() function to display a readable version of the result:
print(tuple(x))
(('John', 'Jenny'), ('Charles', 'Christy'), ('Mike', 'Monica'))
https://www.w3schools.com/python/ref_func_zip.asp
728x90
반응형
'🌳AI Projects: NLP🍀✨ > NLP Deep Dive' 카테고리의 다른 글
The evaluation metric for text generation (4) | 2024.08.31 |
---|---|
The use of the * unpacking operator (0) | 2024.08.25 |
Links to BERT base model (uncased) (0) | 2024.08.25 |
Naive Bayes versus BERT in Sentiment Analysis (0) | 2024.08.24 |
Comments