python中用什么函数读取字符串 python如何读取字符串

主机教程 建站分享 2年前 (2022-10-06) 175次浏览

文章摘要:python中用什么函数读取字符串 python如何读取字符串

python中使用input函数读取字符串,具体方法如下: input()函数语法: str = input( […]

python中使用input函数读取字符串,具体方法如下:

input()函数语法:

str = input(tipmsg)

input()函数使用方法:

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))


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中用什么函数读取字符串 python如何读取字符串
文章链接:http://www.7966.org/post/15623.html
转载请注明出处

喜欢 (0)