2016-01-21 27 views

回答

0
#At starting of script take the username as input 

name = raw_input("Enter Your Name : ") 
name.lower() #To make input name lowercase 

if name == 'bob': #name for which you have to call b 
    b() 
else: 
    a() 
+0

非常感谢! – bob

相关问题