#Python Program #Program to find nos divisible by 3 and not by 5 in the range 0 to 999 num[] for x in range(0,1000): if(x%3==0) and (x%5!=0): num.append(str(x))
print num "," .join()
#Functions def welcome(name) print 'Hi!' , name
welcome(Jalal) welcome(Rithika)