elbervalim

exerc_ms_aula-12

May 24th, 2022 (edited)
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. # !usr/bin/env python
  2. # encoding: utf-8
  3.  
  4. # asking info for user i discover raw_input
  5. first_name = raw_input ('first name')
  6. last_name = raw_input ('last name')
  7. print('Hello ' + first_name.capitalize() + ' ' + last_name.capitalize() )
  8.  
  9. # microsoft 10th video, asking info for user
  10. # first_name = input ('first name')
  11. # last_name = input ('last name')
  12. # print('Hello ' + first_name.capitalize() + ' ' + last_name.capitalize() )
Advertisement
Add Comment
Please, Sign In to add comment