2016-01-21 43 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

相關問題