Skip to content

MVarshini/MyProject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

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)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published