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
~706 People Reached
Favorite Forums
Favorite Tags
Member Avatar for spyhawk

[B]I am trying to return True or False by comparing dimension size(width and heights) of two pictures. so i came up with[/B]import media f = media.choose_file() pic = media.load_picture(f) g = media.choose_file() pic1 = media.load_picture(g) x = pic.get_width() * pic.get_height() y = pic1.get_width() * pic1.get_height() [B]but i have no idea …

Member Avatar for Lucaci Andrew
0
240
Member Avatar for spyhawk

i have a given picture and have to create a picture that is twice as wide as the given picture. For each pixel (x, y) in the original picture, the pixels (2 * x, y) and (2 * x + 1, y) in the new picture should be set to …

Member Avatar for NewbieXcellence
0
310
Member Avatar for spyhawk

I am new to python i am trying to return True if the strs are the same (including lettercase), and False otherwise. def abc(str, str): x = raw_input() y = raw_input() return x==y i have no idea how to compare two strings, is there code for getting how many letters …

Member Avatar for woooee
0
156