raw_input fuction is no longer available in python3. Instead of that, you can simply use input. Example:
name= input("enter your name")
print("hey", name)
For more changes and updates in python3, you can read here: https://docs.python.org/3/whatsnew/3.0.html