📌  相关文章
📜  正方形查找器 python 代码示例

📅  最后修改于: 2022-03-11 14:47:00.877000             🧑  作者: Mango

代码示例1
a = int(input("Enter the number to find square: "))
print("square of your number is: ",a**2)