Answers for "start python3 project"

2

make python use python3

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10
Posted by: Guest on September-28-2021
0

starting python project

two_digit_number = input("Enter a two digit number:- ")
first_Digit = int(two_digit_number[0])
second_digit_number = int(two_digit_number[1])
calculation = first_Digit + second_digit_number
print(calculation)
Posted by: Guest on July-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language