starting python project

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

showing results for - "starting python project"
Colin
06 Nov 2020
11)random password generator
22)tresure Island 
Michela
24 Sep 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