1.数据类型

整形,浮点型,字符串

整型 -2, -1, 0, 1, 2, 3, 4, 5
浮点型 -1.25, -1.0, --0.5, 0.0, 0.5, 1.0, 1.25
字符串 'a', 'aa', 'aaa', 'Hello!', '11 cats'

2.字符串的连接和复制

+可以连接字符串 *可以复制字符串
img
img

3变量

a = 3
变量命名:

1.只能是一个词。
2.只能包含字母、数字和下划线。
3.不能以数字开头。

有效的变量名 VS 无效的变量名
balance current-balance(不允许中划线)
currentBalance current balanc(不允许空格)
current_balance 4account(不允许数字开头)
_spam 42(不允许数字开头)
SPAM total_$um(不允许$这样的特殊字符)
account4 'hello'(不允许'这样的特殊字符)

4.python有很多内置函数

print()  len() input()  int() float()  str()

#注释 ###多行注释 ctrl+/

posted on 2024-12-23 22:33  Martinl_it  阅读(5)  评论(0编辑  收藏  举报