Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. passwords = ('Facebook = xxxxn'
  2. 'Instagram = xxxxxxn'
  3. 'Youtube = xxxxxxx')
  4. print(f"Passwords found for: {passwords}")
  5.  
  6.  
  7. # Actual result:
  8. Passwords found for: Facebook = xxxx
  9. Instagram = xxxxxx
  10. Bank = xxxxxxx
  11.  
  12.  
  13. # Expected result:
  14. Passwords found for: Facebook = *******
  15. Instagram = *******
  16. Bank = *******
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement