PinnedDictionaries in PythonDictionary is one of the data type in python. It uses to connect pieces of related information. It can store limitless amount of…Dec 23, 2020Dec 23, 2020
Python program to print all the numbers from 0 to 6 except 3 and 6for i in range(6): if(i==3 or i==6): continue print(i,end=’’)Aug 16, 2024Aug 16, 2024
Python program to accept string from user and reverse it.word=input(“Inpute a word to reverse:”) Inputer a word to reverse:PythonAug 16, 2024Aug 16, 2024
Python program to find numbers which are divisible by 7 and multiples of 5 , between 1 and 100list1=[]Aug 16, 2024Aug 16, 2024
Python Program to filter out only the even items from a list using lambda functionmylist=[1,5,4,6,8,11,3,12] new_list=list(filter(lambda x:(x%2==0),mylist)) print(new_list) [4, 6, 8, 12]Aug 16, 2024Aug 16, 2024
Key elements of machine learningThere are thousands of Machine leering algorithms and thousands of new algorithms are developed every year.Nov 18, 2023Nov 18, 2023
Machine learning life cycleMachine learning life cycle gives computer system power to automatically learn without being explicitly programmed. Machine learning life…Nov 16, 2023Nov 16, 2023
Applications of Machine learningImage Recognition- Most common application of machine learning. It is used to identify objects, persons, places, digital images etc. The…Nov 13, 2023Nov 13, 2023
Getting to know the dataIn analytics base table the data quality reports give the in depth picture of data. The data that we will work with, we should study it in…Apr 3, 2022Apr 3, 2022