class Solution:
def unique1(self, dict1):
a1=[]
for key in dict1.keys():
a1.append(dict1[key])
b1=set(a1)
return(b1)
kk=Solution()
if __name__=="__main__":
print(kk.unique1({"a":1,"i":1,"u":5}))
I wrote about the solutions to some problems I found from programming and data analytics. They may help you on your work. Thank you.
R is not a simple programming language, and it does better on reading excel files than python . tried to read excel files to python and R. i...
No comments:
Post a Comment