Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. >>> url = 'http://www.bhaskar.com/uttar_pradesh/lucknow/='
  2. >>> word = 'word1'
  3. >>> conj = url + word
  4.  
  5. >>> conj
  6. 'http://www.bhaskar.com/uttar_pradesh/lucknow/=xe0xa6xb8xe0xa6xb0'
  7.  
  8. >>> temp2 = 'http://www.cfilt.iitb.ac.in/indowordnet/first?langno=3&queryword=xe0xa6xb8xe0xa6xb0'
  9. >>> print(temp2)
  10. http://www.cfilt.iitb.ac.in/indowordnet/first?langno=3&queryword=সর
  11.  
  12. >>> temp3 = 'x68x74x74x70x3ax2fx2fx77x77x77x2ex63x66x69x6cx74x2ex69x69x74x62x2ex61x63x2ex69x6ex2fx69x6ex64x6fx77x6fx72x64x6ex65x74x2fx66x69x72x73x74x3fx6cx61x6ex67x6ex6fx3dx33x26x71x75x65x72x79x77x6fx72x64x3dxe0xa6xb8xe0xa6xb0'
  13. >>> print(temp3)
  14. http://www.cfilt.iitb.ac.in/indowordnet/first?langno=3&queryword=সর
  15.  
  16. >>> temp == temp2
  17. True
  18. >>> temp == temp3
  19. True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement