输入和输出
print()在括号中加上字符串就可以输出
例如:
print ( "Hello,world!")
输出不换行
print ( "Hello,world!", end="")
输入: input("提示语句")
#-*- coding:utf-8 -*-
a = input() # 输入字符串,得到什么类型?
print(a)
print(type(a))
a = int(input()) # 输入数字,得到什么类型?
print(type(a))
换行输入结束
按空格切分呢?
#-*- coding:utf-8 -*-
a = input() # 输入
b = input() # 输入
print(a)
print(b)
a, b = input().split() # 按空格分割
a, b = input().split (',') # 按逗号分割
# 输入多个int类型
a = int(a)
b = int(b)
a, b = map(int, input().split())
网上找到例子:
split()函数,把输入的内容分割成列表
print(int(input))
注释
单行注释:以#开头,规范:注释前面有一个空格;注释放在代码后面时,和代码间隔两个空格
多行注释:和''' 和""
# 单行注释
print() # 打印
"""
多行注释
"""
'''
多行注释
'''
Python中双引号和单引号含义相同