1.字符串的定义
字符串是由字母、数字、特殊字符来组成的序列。
2.如何创建字符串
如何创建字符串?
——使用**单引号、双引号或者三引号**。
name = 'sht'
num = 31
para = '''hello world'''
para_two = """hello world"""
原创2024年10月20日...大约 15 分钟
字符串是由字母、数字、特殊字符来组成的序列。
如何创建字符串?
——使用**单引号、双引号或者三引号**。
name = 'sht'
num = 31
para = '''hello world'''
para_two = """hello world"""
在现在ChatGPT或许已经成为人们日常工作学习必不可少的一部分了。而任然有很多人不知道它的具体使用方法及使用情景。于是就有了今天的这篇文章。 观前警告:本人对ChatGPT也不算十分精通,如有错误欢迎指出。(不喜勿喷)
名称 | 链接 |
---|---|
名侦探柯南(Meitantei Konan) | 主链接---备用链接---官网 |
孤独摇滚(Bocchi the rock) | 主链接---备用链接---官网 |
新世纪福音战士(EVA) | 主链接---备用链接---官网(粉丝制作) |
In [1]: 1+1
Out[1]: 2
In [2]: 1+1.0
Out[2]: 2.0
In [3]: 2-1
Out[3]: 1
In [4]: 2-1.0
Out[4]: 1.0
In [5]: 2*2
Out[5]: 4
In [6]: 2*2.0
Out[6]: 4.0
In [7]: 9/3
Out[7]: 3.0
In [8]: #如果其中有一个浮点数,结果就会得到浮点数⌈优先级最高⌋
In [9]: #除法涉及精度问题,所以最后的结果类型是:浮点数类型
1.整型
int_num=1
t= type(int_num)
print(int_num)
print('int num type is:>>>',t)
print('直接检测输出:>>>',type(int_num))
#output
1
int num type is:>>> <class 'int'>
直接检测输出:>>> <class 'int'>