Write A Python Script To Input An Integer And Display Its Square And Cube

Опубликовано: 13 Февраль 2023
на канале: Code With TJ
84
0

Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write A Python Script To Input An Integer And Display Its Square And Cube

Python Scripts
======================
https://codewithtj.blogspot.com/2024/...

Python Functions Solved
==========================
https://codewithtj.blogspot.com/2023/...

Python Programs Solved
============================
https://codewithtj.blogspot.com/2023/...


Code
=============================
number = int(input("Enter a Number : "))

s = number ** 2
c = number ** 3

print("Square of number is : ", s)
print("Cube of number is : ", c)


Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners