Python学习笔记
注释
- 单行注释用
#
- 多行注释
''' '''
""" ""”
输出
print()
- 自带换行——可以用
print("hello world",end="")
删除换行 print("hello","world")
输出结果是hello world默认空格。print("hello","world",sep="")
,在sep中输入参数可以填充在两个输出之间。- f-string
- eg:
x=1 y=2 print(f"一个简单的数学问题:\"{x}+{y}=?\",答案是{x+y}!")
- eg:
- 多行输出
''' '''
""" ""”
输入
input()
x=input("请输入一个数字")
,先打印引号里的内容,再把输入的内容赋給x- 返回值是字符串
- 一行输入多个值
a,b=input().split("")
split中输入分隔参数,默认为空格
导入模块
import math #导入数学库
print(math.factorail(3)) #yy.XX调用库中的函数
标签:Python,笔记,学习,input,print,world,hello,输入
From: https://www.cnblogs.com/pang2308/p/17847460.html