Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~110 People Reached
Favorite Forums
Favorite Tags
Member Avatar for seher_2

**i want to normalize these ingredients values to range of 0,1 my question is how to pass how dictionary to function? and recieving as a arguments** sample code def normalize(d, target=1.0): raw = sum(d.values()) factor = target/raw return {key:value*factor for key,value in d.iteritems()} Use it like this: >>> data = …

0
110