Print Exponential of A Number in Python #shorts #coding #programming

preview_player
Показать описание


Also Watch :

★★★Best Online Programming Courses★★★

My name is Yogendra Singh and on this channel ​ @Tech Decode Tutorials , I show you how you can easily download and install any programming language compiler vs interpreter and #programming hub for learning the latest programming language.

Consider subscribing for best ide and coding bootcamp.

If you found this video useful please give it a thumbs up and subscribe to my channel! and If you have any questions regarding this video, please ask them in the comment section. thanks for watching! :)

Follow Us:

#shorts #coding #programming

DISCLOSURE: This video and description might contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help supports the channel and allows us to continue to make videos like this. Thank you for the support! [Intro Song Credit]
Valence - Infinite [NCS Release]
Рекомендации по теме
Комментарии
Автор

base=int(input("enter the base"))
power=int(input("enter the power"))
op=(base**power)
print("the output is=", op)

MGM