Guest User

Untitled

a guest
Mar 2nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. def personal_info():   
  2. my_info = 'sajeesh 21,sauparnika, seegehalli, Bangalore ,Karnataka - 560049 ,Mob: 919742877659'   
  3. college_major = 'Psychology'   
  4. print('My personal information is as follows:',my_info )   
  5. print('My college major is:',college_major)
  6.  
  7.  
  8. def personal_info_2():    name = 'sajeesh'   
  9. address = '21, sauparnika, seegehalli, blore'   
  10. state = 'karnataka'    pin_code = '560049'   
  11. telephone = '9742877659'   
  12. college_major = 'psychology'   
  13. print(name,address,state,pin_code,telephone,college_major ,sep ="\n")
Add Comment
Please, Sign In to add comment