摘要:
>>> header = "Say hello in Python" >>> >>> def hello(name: str) -> str: ... """ ... %s ... ... Python is amazing! ... """ ... return f"Hello {name}. N
阅读全文
摘要:
>>> for i in range(5): ... print(i) ... 0 1 2 3 4 >>> print(i) 4 >>> for j in range(5): ... print('a') ... j = 10 ... a a a a a >>> print(j) 10
阅读全文