python中用什么函數(shù)讀取字符串

九三
765
2021-01-20 17:00:20
欄目: 編程語言

python中用什么函數(shù)讀取字符串

python中使用input函數(shù)讀取字符串,具體方法如下:

input()函數(shù)語法:

str = input(tipmsg)

input()函數(shù)使用方法:

a = input("Enter a number: ")

b = input("Enter another number: ")

print("aType: ", type(a))

print("bType: ", type(b))

result = a + b

print("resultValue: ", result)

print("resultType: ", type(result))

0