PinnedKhilari Pradip JDictionaries 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
Khilari Pradip JPython 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 16Aug 16
Khilari Pradip JPython program to accept string from user and reverse it.word=input(“Inpute a word to reverse:”) Inputer a word to reverse:PythonAug 16Aug 16
Khilari Pradip JPython program to find numbers which are divisible by 7 and multiples of 5 , between 1 and 100list1=[]Aug 16Aug 16
Khilari Pradip JPython 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 16Aug 16
Khilari Pradip JKey elements of machine learningThere are thousands of Machine leering algorithms and thousands of new algorithms are developed every year.Nov 18, 2023Nov 18, 2023
Khilari Pradip JMachine 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
Khilari Pradip JApplications 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
Khilari Pradip JGetting 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