You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ChocoPy/pa3-tests/core/str_get_element_oob_2.py

9 lines
104 B

x:str = "abc"
a:str = ""
def str_get(s:str, i:int) -> str:
return s[i]
a = str_get(x, 3)
print(a)