0
How can i get the url of input link
For example Input: https://www.youtube.com/watch?v=RRW2aUSw5vU Output: RWW2aUSwvU How can i do it by using re
1 Answer
+ 1
Str=url
Print (str [str.index ('=')+1:])
For example Input: https://www.youtube.com/watch?v=RRW2aUSw5vU Output: RWW2aUSwvU How can i do it by using re