I am creating a program on python that allows you to create a username and password and here's what I have so far:
#Code
username = str(input("Please enter a username:"))
print("Your username is",username,",proceed?")
raw_input = input()
if raw_input() == 'no':
re_u = input("Please re-enter username")
else:
import getpass
mypass = getpass.getpass("Please enter your password:")
And the trouble i'm receiving is: Traceback (most recent call last): line 6, in if raw_input() == 'no': TypeError: 'str' object is not callable.
Please help