When I try to f'string dictionary, it says invalid syntax.
def up_low(s):
d={"upper":0,"lower":0}
for c in s:
if c.isupper():
d["upper"]+=1
print (f"No. of Upper case characters: {d["upper"]}")
elif c.islower():
d["lower"]+=1
print (f"No. of Lower case characters:{d["lower"]}")
else:
pass
it says invalid syntax for line 6 and line 9.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…