start python project

Solutions on MaxInterview for start python project by the best coders in the world

showing results for - "start python project"
Stefania
19 Feb 2016
11)random password generator
22)tresure Island 
Carol
15 Jul 2020
1two_digit_number = input("Enter a two digit number:- ")
2first_Digit = int(two_digit_number[0])
3second_digit_number = int(two_digit_number[1])
4calculation = first_Digit + second_digit_number
5print(calculation)
6