Hello friends, I'm Shahrukh!

Welcome to CodeWithShahrukh! On this channel, I share tutorials on programming languages and provide step-by-step solutions to math problems. Whether you're just starting your coding journey or looking to improve your math skills, this is the perfect place for you!

What you'll find here:

Programming tutorials (Python, Java, etc.)
Solutions to math problems (algebra, calculus, and more)
Coding tips, tricks, and projects
I’m working hard to bring you valuable content, so your support means everything! Please like, share, and subscribe to my channel to help me grow and reach more learners.

Let’s explore the exciting world of coding and mathematics together. Thanks for being here!

For sponsorship :
shakha302602@gmail.com


CodeWithShahrukh

What will be the output of the following code?

x = [1, 2, 3]
y = x
y.append(4)
print(x)

11 months ago | [YT] | 0

CodeWithShahrukh

What will be the output of the following python code?
X = 10
y = 20
Z = 30
result = x + y * z
print(result)

11 months ago | [YT] | 1

CodeWithShahrukh

str = "CodeWithShahrukh"
print(str[0:-9])

1 year ago | [YT] | 2

CodeWithShahrukh

n=4
sum=0
for i in range(2,n+1,2):
sum = sum + i
print (sum)

1 year ago | [YT] | 0

CodeWithShahrukh

str = "Good Morning"
print(str[0:9])

1 year ago | [YT] | 2

CodeWithShahrukh

str="CodeWithShahrukh"
print (len(str))

1 year ago | [YT] | 0

CodeWithShahrukh

n = "CodeWithShahrukh"
print (type (n))

1 year ago | [YT] | 3

CodeWithShahrukh

n=(1,2,3,4)
print (type(n))

1 year ago | [YT] | 1

CodeWithShahrukh

n=[223]
print (type(n))

1 year ago | [YT] | 0

CodeWithShahrukh

y = min(5, 10, 25, 80)

print(y)

1 year ago | [YT] | 0