Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是python的新手,我想知道是否有办法识别python中某些东西的索引位置?
例如,如果我有一个由字母 az 组成的字符串,并且我要求用户输入一个字母,有没有办法让程序识别字母“f”在字母字符串中的索引为 5?
你的意思是这样吗?
alpha = "abcdefghijkl..." alpha.index("f")
>>> 'asdfsadg'.index('f') 3