About Lesson
You will learn basics of Python programming in this lecture.
Join the conversation

10.1666
Reply

umair nazeer and i am the student of communication engineering , i want to study data science just to help my carrier and to do freelancing
Reply

10.166666666666666
Reply

# dmas rule
x=10+20-30/4*50
print(x)
# bo dmas rule
y=(10+20-30)/6*3
print(y)
print(x+y)# pemdas rule
x= 10**-3+20-(30/40)*30-40
print(x)
Reply

27:14 (PEMDAS)
Answer: 10.166666
Reply

My self Zain Ul Abaiden. I have done my graduation in Computer Science. I am from Lahore. Now I am learning Data Science Course from codanics. My Linkdin Profile link is www.linkedin.com/in/zain-ul-abaiden and my github profile link is https://github.com/Zain-Ul-Abaiden
Reply

buht simple treqe sy
Reply

10.166666666666666
Reply

% -- Modulus -- which gives us the remainder
Reply

print("123AMR_CS",5978)
print("Neo_144567$$%$##$%#!@#",123,True)
print('WQEQWE!@#@!#ASD',123,False,sep="_")
Reply