Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # !usr/bin/env python
- # encoding: utf-8
- # asking info for user i discover raw_input
- first_name = raw_input ('first name')
- last_name = raw_input ('last name')
- print('Hello ' + first_name.capitalize() + ' ' + last_name.capitalize() )
- # microsoft 10th video, asking info for user
- # first_name = input ('first name')
- # last_name = input ('last name')
- # print('Hello ' + first_name.capitalize() + ' ' + last_name.capitalize() )
Advertisement
Add Comment
Please, Sign In to add comment