@educationwithmuhammadshahi7334

Amazing content amazing  voice  very very easy way to teaching sir Aamar allah ap ko mazeed kamjabi day itna acha koi b nhi samja raha koi b nhi with practicle sirf sir Aamar wo b free sir i solute you mashallah hum jaisay jo feee afford nhi krsaktay again thanks

@MUHAMMAD-ny1ym

amazing tutorial.

@All_u_need_channel

I hope I will get a lot of knowledge from this channel.

@tipsandtricks5722

Amazing and really impressive lectures.

@ehsanullah7914

Dr Sab great work. Dr Ehsan

@ArshadDataScienceFoundation

❤ Jazakumlah kharn ❤️

@saifshamil4690

Great sir ❤u

@AliAnnotationwala

Time stamp : 17:09

In Python, the "%" sign is the modulo operator, used to find the remainder of the division of two numbers. For example, x % y gives the remainder when x is divided by y. Here's a quick example:

"x = 10
y = 3
remainder = x % y  # This will result in 1, because 10 divided by 3 is 3 with a remainder of 1
print(remainder)"

Additionally, the "%" sign is also used in string formatting operations, where it's used to insert values into a string template. This is often called string interpolation. For example:

"name = "Alice"
age = 30
message = "My name is %s and I am %d years old." % (name, age)
print(message)"

This will output: "My name is Alice and I am 30 years old."

@wonderman521

Excellent

@msdofficial4302

Loving the way of teaching.  Itna detail mein q nahi samjhata . Kamal bhai❤

@Mdshamim0786

Amazing class ❤❤

@muhammadakhtar1103

"May Allah bless you and your father, who has civilised you"

@MuhammadYasirGhani-d6t

Thank you sir

@AliAnnotationwala

37:00 

Typecasting Example:
"
x = 10

y=str(x)

print(y)

Output 10

x = 3.9

y=int(x)

print(y)

Output (3)
"

@ranaadnan4583

Sir,
Data science k liye koi specific background hona zrori h like engineering ,IT or CS.???
Ya ise anyone kr skta h means matric level or inter level

@AliAnnotationwala

21:00 Comment out > shortcut key (Ctrl + /) 
For multiple lines select multiple lines and press (Ctrl + /)

@Adil-g4m

ye chini wali example zra punjabi mai ho jati to mza ah jata

@pixelmobiles

To solve this expression, we can follow the order of operations. The order of operations is a set of rules that specifies the order in which calculations should be performed in order to obtain the correct result. The order of operations is often abbreviated as PEMDAS:

P: Parentheses first
E: Exponents (ie Powers and Square Roots, etc.)
MD: Multiplication and Division (left-to-right)
AS: Addition and Subtraction (left-to-right)

So, we can start by performing any operations inside parentheses first:

3**2/23/3+6-4/(26)
= 9/23/3+6-4/(26)

Next, we can simplify the exponents:

9/23/3+6-4/(26)
= 4.53/3+6-4/(26)

Then, we can perform the multiplication and division, working from left to right:

4.53/3+6-4/(26)
= 4.5+6-4/(2*6)

Then, we can perform the addition and subtraction, again working from left to right:

4.5+6-4/(26)
= 10.5-4/(26)

Finally, we can divide 4 by 2*6:

10.5-4/(2*6)
= 10.5-2/6
= 10.5-0.333...

So the final answer is approximately 10.17.




is i correct or the anser of visual studio code 10.66666666666

@AliAnnotationwala

23:02 PEMDAS (Parenthesis, Exponents, Multiplication, Division, Addition, Subtraction)