1 00:00:00,000 --> 00:00:04,724 [MUSIC] 2 00:00:04,724 --> 00:00:09,301 Hey there, let's try a bit of Python practice around taking input from users, 3 00:00:09,301 --> 00:00:12,198 try and accept blocks, and conditions. 4 00:00:12,198 --> 00:00:15,680 There's a workspace attached to this video where you can write your code, or 5 00:00:15,680 --> 00:00:19,120 you can do it locally by downloading the workspace through the File menu. 6 00:00:20,170 --> 00:00:22,860 All right, let's see what you need to do and 7 00:00:22,860 --> 00:00:25,530 these instructions are deceptively simple. 8 00:00:25,530 --> 00:00:27,460 This challenge has three major steps, but 9 00:00:27,460 --> 00:00:30,840 of course there's probably some minor steps you'll need to discover on your own. 10 00:00:30,840 --> 00:00:34,230 First, you need to get input from the user for their name and 11 00:00:34,230 --> 00:00:35,490 what year they were born. 12 00:00:35,490 --> 00:00:37,820 You wanna make sure that they give you a year that's an integer. 13 00:00:37,820 --> 00:00:40,908 We don't have Star Trek's floating point dates just yet. 14 00:00:40,908 --> 00:00:46,585 Then you'll need to figure out what year they'll turn 25, 50, 75, and 100. 15 00:00:46,585 --> 00:00:48,810 It's gonna require some math. 16 00:00:48,810 --> 00:00:51,860 And lastly, you need to print out when those years are. 17 00:00:51,860 --> 00:00:54,320 So I'm kinda leaving this part up to you, 18 00:00:54,320 --> 00:00:57,510 at least a little bit, I don't care how you format your message. 19 00:00:57,510 --> 00:00:59,068 Go ahead and format them however you want. 20 00:00:59,068 --> 00:01:02,532 It'd be good though if you use their name, since you asked for it, and 21 00:01:02,532 --> 00:01:06,331 said something like, Kenneth, you'll be 50 in the year 2031. 22 00:01:06,331 --> 00:01:09,547 And don't put out any ages or years that are already passed. 23 00:01:09,547 --> 00:01:12,460 These should only be days that they have to look forward to. 24 00:01:12,460 --> 00:01:14,940 All right, I'm gonna let you get to it and I'll see you in the next video