Feb 21, 2021nums = [3, 4, 6, 10, 10, 3, 3, 3]mode = max(set(nums), key=nums.count) # mode = most frequent elementMust-Know Python Tips & Tricks in 2021802Artturi Jalliwhen i have 2 values with same frequency, it output only one valuewhen i have 2 values with same frequency, it output only one value1 min read1 min read
Nov 23, 2019Getting started with Node, Docker, and MySQLNow a days, Developers facing issues with application development using multiple stacks like- Installing different databases server on one single PC like MongoDB, MySQL is difficult due to dependency of other libraries. Running multiple terminals for different servers like one for frontend, one for backend, one for database, and so…Docker3 min readDocker3 min read