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

Publicado em: 18 Abril 2024
no canal de: 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)

'''


Nesta página do site você pode assistir ao vídeo on-line Python Practice Basic Code | Basic Python Operators I @prograMeme2023 | Python Tutorial | Memes duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário PrograMeme 18 Abril 2024, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 295 vezes e gostou 25 espectadores. Boa visualização!