Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 307 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 307 Bytes

MyProject

#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)