Swapping Two Variables in Python Get link Facebook X Pinterest Email Other Apps September 16, 2023 Swap two variables python example code: a = 5 b = 10 a, b = b, a print ( "a:" , a) print ( "b:", b) Read more
Calculate the Area of a Circle with PYTHON Get link Facebook X Pinterest Email Other Apps September 14, 2023 Calculate the Area of a Circle import math radius = float ( input ( "Enter the radius of the circle: " )) area = math.pi * (radius ** 2 ) print ( "Area of the circle:" , area) Read more
Simple Python Calculator Get link Facebook X Pinterest Email Other Apps September 12, 2023 Simple Python Calculator Code: num1 = int(input ("enter number") ) num2 = int(input ("enter number") ) action = str(input ("choose action: Add(a) Sub(s) Mult(m) Div(d) ->") ) print( "the result is", end="") if action == "a" : print(num1+num2) elif action == "s" : print(num1-num2) elif action == "m" : print(num1*num2) else: print(num1/num2) Read more