Python Practice Basic Code | Basic Python Operators I @prograMeme2023 | Python Tutorial | Memes

Published: 18 April 2024
on channel: PrograMeme
295
25

Welcome to our Python programming tutorial for beginners! In this video, we'll cover the fundamental Python operators that every aspiring programmer needs to know. Whether you're just starting your coding journey or looking to refresh your skills, this tutorial is perfect for you.

We'll dive into the basic Python operators, including arithmetic, assignment, comparison, logical, and bitwise operators. You'll learn how to perform simple calculations, assign values to variables, compare values, and make logical decisions using Python's intuitive syntax.

By the end of this video, you'll have a solid understanding of Python operators and be well-equipped to tackle more complex programming challenges. So grab your favorite code editor and let's get started on your Python journey together!

Don't forget to like, share, and subscribe for more Python tutorials and programming content! Happy coding! 🐍✨

#PYTHON PRACTICE PROGRAMS
'''
#WAP in python to add 3 numbers by user input
a=int(input("enter number"))
b=int(input("enter number"))
c=int(input("enter number"))
s=a+b+c
print(s)
'''
'''
#WAP in python to swap value of 2 varibales
a,b=4,7
print(a,b)
#a,b=b,a
temp=a #temp=4 a=4 b=7
a=b #temp=4 a=7 b=7
b=temp #temp=4 a=7 b=4
print(a,b)
'''
'''
#WAP to calculae compound intrest
p=1000
r=10
t=4
a=p*(1+r/100)**t
ci=a-p
print("compound intrest is",ci)
si=p*r*t/100
print("simple intrest is",si)
'''
'''
#WAP to calculate area of circle
r=int(input("enter radius"))
a=22/7*r**2
print("area of circle is",a)
'''
'''
#WAP to calculate volume of cylender
h=10
r=10
a=22/7*r**2*h
print(a)
'''
'''
#WAP to print the sum of digits of a 2 digit number
n=int(input("enter 2 digit number"))
o=n%10
t=n//10
print("sum of digits is",o+t)
'''
'''
#WAP to print the multiplication of digits of a 3 digit number
n=int(input("enter 3 digit number"))
o=n%10
t=(n//10)%10
h=n//100
print("sum of digits is",o+t+h)
'''
''' WAP to accept 1 integer value then print :
-the number that comes after it
-the number that comes before it
next 3 numbers that comes after it
previous 5 numbers that comes before it'''
n=int(input("enter number"))
print(n+1)
print(n-1)
print(n+1,n+2,n+3)
print(n-1,n-2,n-3,n-4,n-5)

'''


On this page of the site you can watch the video online Python Practice Basic Code | Basic Python Operators I @prograMeme2023 | Python Tutorial | Memes with a duration of hours minute second in good quality, which was uploaded by the user PrograMeme 18 April 2024, share the link with friends and acquaintances, this video has already been watched 295 times on youtube and it was liked by 25 viewers. Enjoy your viewing!