Skip to content

Instantly share code, notes, and snippets.

View jichngan's full-sized avatar

Ji Cheng jichngan

  • 17:39 (UTC +08:00)
View GitHub Profile
@jichngan
jichngan / character_input.py
Created December 29, 2017 06:43
Character Input
name= input("Input name please: ")
age= input("Inpute age please: ")
100_years_old_age= 100- int(age) + 2017
print("You will be 100 years old in " + 100_years_old_age)