程序与用户交互
概念:用户交互就是人往计算机中input/输入数据,计算机print/输出结果
############输入
a = input('请输入您的密码:') # '1' 1
"""只要是input,接收的数据类型全部都是str类型的,不管你输入的类型是什么类型的"""
# 如果以后你需要做运算,需要转类型
# print(username, type(username)) # str
# 如何把字符串类型的数字转为 数字
a = int(a)
print(a+1) # can only concatenate str (not "int") to str
#############输出
res = 1
res1= 2
# print('helloworld', 'a', 'b')
# print('helloworld', res, res1)
print('a', end="\n") # 换行
print('b')
"""end='\n'"""
多个变量输出
print
函数可以输出多个值,用逗号隔开。输出时,各个值之间默认使用空格分隔
# 多值输出示例
name = "Alice"
age = 25
print("姓名:", name, "年龄:", age) # 输出姓名和年龄
默认 end 参数
print
函数也有一些可选参数,例如 end
参数用于指定输出的结尾字符,默认为换行符"\n"(代表换行)。
# end 参数示例
print("Hello", end="")
print(", World!") # 输出结果为:Hello, World!
- 可以将end参数的值改成任意其它字符
print("aaaa",end='')
print("bbbb",end='&')
print("cccc",end='@')
#整体输出结果为:aaaabbbb&cccc@
标签:输出,end,python,用户,str,print,input,交互
From: https://www.cnblogs.com/xiao01/p/17862857.html