What is the translation of " ITERABLE " in Vietnamese?

Noun
iterable
thể lặp lại
be able to repeat
repeatable
can repeat
unrepeatability
iterable

Examples of using Iterable in English and their translations into Vietnamese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
Strings as an iterable.
String là một iterable.
Some data types are iterable, which means you can loop over the values they contain.
Một số kiểu dữ liệu là iterable, có nghĩa là bạn có thể lặp qua các giá trị mà họ có.
Return True if all elements of the iterable are true.
All() Trả về True khi tất cả các phần tử trong iterable là đúng.
Map(function, iterable,) Apply function to every item of iterable and return a list of the results.
Map( function, iterable,…)- Áp dụng hàm cho mọi mục có thể lặp lại và trả về một danh sách các kết quả.
ForEach method in Iterable interface.
Định nghĩa của phương thức forEach() trong Iterable Interface.
You can't extend with just 6 since it's not iterable.
Bạn không thểmở rộng chỉ với 6 vì nó không thể lặp lại được.
So with extend, each element of the iterable gets appended onto the list.
Vì vậy, với mở rộng, mỗi phần tử của iterable được nối vào danh sách.
Everything you can use with statement such"for… in…" is an iterable.
Mọi thứ mà bạn có thể dùng cú pháp“ for… in…” đều là một iterable.
An object is iterable if it defines its iteration behavior, such as what values are looped over in a for… of construct.
Một đối tượng là khả duyệt nếu nó định nghĩa cơ chế duyệt của nó, chẳng hạn như giá trị gì được duyệt qua trong hàm dựng for… of.
From() is an array method that takes in array-like objects or iterable objects.
From() là phương thức chophép tạo ra một Array từ một iterable object hoặc array- like object như dưới đây.
It had some fixes from 7.0 and a few additional features like iterable pseudo type, semantic array, nullable types and void functions.
Nó có một số bản sửa lỗi từ 7.0 và một số tính năng bổ sung như kiểu giả lặp, mảng ngữ nghĩa, kiểu nullable và hàm void.
Parallel() is a collection of the asynchronous functions to run(an array,object or other iterable).
Parallel() là một tập hợp các hàm bất đồng bộ để chạy( một mảng,đối tượng hoặc có thể lặp lại khác).
And we see that going out of our way to create an iterable just to use extend is a(minor) waste of time.
Và chúng ta thấy rằngđi ra khỏi con đường của chúng tôi để tạo ra một iterable chỉ để sử dụng mở rộng là một( nhỏ) lãng phí thời gian.
The for loop creates an iterator object internally,iter_obj by calling lter() on the iterable.
Ở ví dụ này, bên trong vòng lặp for ta tạo một iterator object tên làiter obj bằng cách gọi iter() trên iterable.
And with the toList() method, you can convert the Iterable object returned by the map() method into an actual List object.
Và với phương thức toList(), bạn có thể chuyển đổi đối tượng Iterable được trả về bởi phương thức map() thành một đối tượng List thực tế.
An iterable is the last part of a list comprehension, and all generators are iterable, so they're often used like so.
Một iterable là phần cuối cùng của một danh sách hiểu, và tất cả các máy phát điện có thể lặp lại, vì vậy chúng thường được sử dụng như vậy.
To force the generator to immediately return its pending values,you can pass it into list()(just like you could any iterable).
Để buộc máy phát điện trả lại ngay các giá trị đang chờ xử lýcủa nó, bạn có thể chuyển nó vào list()( giống như bạn có thể lặp lại).
But it isn't probably the prototypical type of iterable that comes to mind when thinking of iterators(i.e., for x in collection: do_something(x)).
Nhưng nó không phải là kiểu nguyên mẫu có thể lặp lại mà bạn nghĩ đến khi nghĩ về các trình lặp( tức là, for x in collection: do something( x)).
An Iterable is a lazily consumed sequence- each item is pulled by the iterator whenever it wants to use it, and hence the enumeration is driven by the consumer.
Một Iterablemột chuỗi được tiêu thụ một cách lười biếng- mỗi mục được kéo bởi trình lặp bất cứ khi nào nó muốn sử dụng nó, và do đó việc liệt kê được thúc đẩy bởi người tiêu dùng.
Common email marketing toolsinclude email marketing platforms like MailChimp and Iterable which allow marketers to build email lists and automate their email campaigns.
Các công cụ email marketing phổbiến bao gồm các công cụ như MailChimp và Iterable, cho phép các marketer xây dựng danh sách email và tự động hóa các chiến dịch email của họ.
A caveat, it doesn't support negative arguments to start, stop, or step, so if that's an issue you may need to calculate indices orreverse the iterable in advance.
Một báo trước, nó không hỗ trợ các đối số phủ định start, stop, hoặc là step, vì vậy nếu đó là một vấn đề bạn có thể cần phải tính toán các chỉ số hoặcđảo ngược các iterable trước.
This is clearly a reasonable iterable whose behavior is well defined-- each time the generator iterates over it, it returns 4(and does so forever).
Điều này rõ ràng là một phép lặp hợp lý mà hành vi của nó được xác định rõ- mỗi lần máy phát lại lặp lại nó, nó trả về 4( và thực hiện mãi mãi).
Iterating through the multiple calls to append adds to the complexity, making it equivalent to that of extend, and since extend's iteration is implemented in C, it will always befaster if you intend to append successive items from an iterable onto a list.
Lặp lại qua nhiều cuộc gọi đến append thêm vào sự phức tạp, làm cho nó tương đương với mở rộng, và kể từ khi lặp đi lặp lại của mở rộng được thực hiện trong C, nó sẽ luôn luôn được nhanh hơn nếu bạn có ý địnhnối thêm các mục liên tiếp từ một iterable vào một danh sách.
Keep in mind that a string is an iterable, so if you extend a list with a string, you will append each character as you iterate over the string(which may not be what you want).
Hãy nhớ rằng một chuỗi là một iterable, vì vậy nếu bạn mở rộng một danh sách với một chuỗi, bạn sẽ nối thêm mỗi ký tự khi bạn lặp qua chuỗi( có thể không phải là những gì bạn muốn).
Python's enumerate function reduces the visual clutter by hiding the accounting for the indexes, and encapsulating the iterable into another iterable(an enumerate object) that yields a two-item tuple of the index and the item that the original iterable would provide.
Python enumerate chức năng làm giảm sự lộn xộn thị giác bằng cách ẩn các kế toán cho các chỉ mục, và đóng gói các iterable thành một iterable( một enumerate đối tượng) tạo ra một tuple hai mục của chỉ mục và mục mà bản gốc có thể lặp lại sẽ cung cấp.
Results: 25, Time: 0.0398

Top dictionary queries

English - Vietnamese