欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python第一天,基本的输入输出

程序员文章站 2022-04-10 12:03:19
...

打印print()函数:

1,打印字符串

>>>print("hello world!")

>>>print('hello world!')

>>>print('hello' + 'world' +'!')

2,打印数字加字符串

>>>a = 10

>>>print('hello ',a,'!')

3,打印一个变量

>>>A = 'Python'

>>>print(A)

>>>print(A + '你好!')

输入:

>>>A = int(input('请输入一个数字:'))

>>>A = input('请输入你的名字:')

#打印的两种方式:
print('hello! python')
print("hello! python3.6")
#变量的定义与赋值
a = 100
print('a的值为:' ,a,)
b = 'BCD'
print('b的值为:' + b)
#input输入
a = int(input('请输入a的值(int)'))
print('a的值为:' ,a,)
b = input('请输入b的值(cahr)')
print('b的值为:' + b)
name = input('请输入你的名字:')
print('Hello' + name + '!')