Holy crap ColdDeath! You're improving quickly!! :eek:
P.S.
Code like this:
print "The date in the Islamic calendar is" , g , "AH"
Can be done with better possibilities like this:
print "The date in the Islamic calendar is %s AH"%( g )
Where %s requests a string, and %d requests an integer. But %s is recommended in all situations even if you have an integer.
And if you are looking to make your program more user friendly, raw_input superceeds input, and then in the condition testing you must make 1 in to "1" or make cal in to str(cal).
