python習題12
阿新 • • 發佈:2018-11-15
ex12
1 age = input("How old are you?") 2 height = input("How tall are you?") 3 weight = input("How much do you weight?") 4 5 print(f"So,you're {age} old, {height} tall and {weight} heavy.")
在終端上鍵入python -m pydoc input
input(prompt=None, /) Read a string from standard input. The trailing newline is stripped. The prompt string, if given, is printed to standard output without a trailing newline before reading input. If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError. On *nix systems, readline is used if available