如何在 Python 中 link
How to link in Python
刚开始学习Python。
placemarker = 1
while True:
print ("Welcome")
command = input ("Enter command: ")
if command == register:
placemarker = 20
if placemarker == 20:
registerMe = input ("What is your name? ")
我正在尝试 link 将寄存器放入输入时到地标 20 区域。我怎么能做到这一点?谢谢,我只是一个初学者。 :)
placemarker = 1
while True:
print ("Welcome")
command = input ("Enter command: ")
if command == "register": #String variable here
placemarker = 20
if placemarker == 20:
registerMe = input ("What is your name? ")
这样改,你应该告诉Python它是一个字符串,因为input
将变量存储为字符串。你也可以这样写-比你的代码更清楚;
while True:
print ("Welcome")
command = input ("Enter command: ")
if command == "register": #String variable here
registerMe = input ("What is your name? ")
print (registerMe) #print or do whatever you want on here
break
方法 input()
returns a String
所以在 if
语句中你必须将 register
单词更改为 "register"
因为变量 command
将是一个字符串:因此 if 语句在 ==
之后寻找一个字符串。 希望对您有所帮助
刚开始学习Python。
placemarker = 1
while True:
print ("Welcome")
command = input ("Enter command: ")
if command == register:
placemarker = 20
if placemarker == 20:
registerMe = input ("What is your name? ")
我正在尝试 link 将寄存器放入输入时到地标 20 区域。我怎么能做到这一点?谢谢,我只是一个初学者。 :)
placemarker = 1
while True:
print ("Welcome")
command = input ("Enter command: ")
if command == "register": #String variable here
placemarker = 20
if placemarker == 20:
registerMe = input ("What is your name? ")
这样改,你应该告诉Python它是一个字符串,因为input
将变量存储为字符串。你也可以这样写-比你的代码更清楚;
while True:
print ("Welcome")
command = input ("Enter command: ")
if command == "register": #String variable here
registerMe = input ("What is your name? ")
print (registerMe) #print or do whatever you want on here
break
方法 input()
returns a String
所以在 if
语句中你必须将 register
单词更改为 "register"
因为变量 command
将是一个字符串:因此 if 语句在 ==
之后寻找一个字符串。 希望对您有所帮助