Learn practical skills, build real-world projects, and advance your career
#checking the current directory
import os
print(os.getcwd())
E:\PYTHON\jupyternotebook
#Setting the working directory
path = 'E:\\PYTHON'
os.chdir(path)
print(os.getcwd())
E:\PYTHON\jupyternotebook
a,b,c = 5,4,'Goni'
print(a+b)
9
a=5
print(a, "is  a type of", type(a))
5 is a type of <class 'int'>
# Find the sum of all the multiples of 3 or 5 below 1000

sum = 0
for i in range(1,1000):
    if(i % 3 ==0 or i% 5 ==0):
        sum = sum + i
print(sum)
    
233168