Python第一次笔记 数据类型 字符串 python三种循环 函数

简介: Python第一次笔记 数据类型 字符串 python三种循环 函数

python数据类型 字符串

  1. 数据类型的查看

# 方式一
print(type("黑马程序员"))

print(type(666))

print(type(55.55))

# 方式二
string_type = type("黑马程序员")

print(string_type)
  1. 数据类型的转换,小数转整数就是单纯的去掉小数点,字符串不可以转换成int型
# 单纯去掉小数
int_type = int(33.9)
print(int_type)

float_type = float(2)
print(float_type)

# 任何类型都可以转化成string类型
str_type = str(11)
print(str_type)

# 将字符串转换成int
int_type = int("11")
print(type(int_type))
print(int_type)
  1. 逗号是可以分割变量的
print("Hello World");

money = 50

print("钱包现在还有:",money)

# 假设买了一个冰激凌
money = money - 10;

print("剩余的钱还有:",money,"元")
  1. 字符串引号的包含
# 字符串引号的包含
str1 = "'字符串中有单引号字符'"
print(str1)

str2 = '"字符串中有双引号字符"'
print(str2)
  1. 字符串的拼接
# 字符串的拼接
str3 = "学IT,到黑马"
str4 = "月薪过万"
str5 = str3 + str4
print(str5)
  1. 字符串不可以和int类型直接拼接,需要进行强制转换
int1 = 1
int1 = str(int1)
print("我的电话号码是:" + int1)
  1. 字符串格式化 -- 解决数字类型和字符串类型不可以拼接的问题 使用格式化
# 字符串格式化 -- 解决数字类型和字符串类型不可以拼接的问题 使用格式化
class_num = 57
class_salary = 16781
message = "Python大数据学科,北京%s期,毕业平均薪资是%s" % (class_num,class_salary)
print(message)
  1. 完成对字符串,整数,浮点数,三种不同类型的变量的占位
# 完成对字符串,整数,浮点数,三种不同类型的变量的占位
name = "传智播客"
set_up_year = 2006
stock_price = 19.99
message = "我是%s,我成立于:%d,我今天的股价是:%f" % (name,set_up_year,stock_price)
print(message)
  1. 字符串精度控制
    ==这个是遵循四舍五入原则==
score = 11.345
print(score)
# 这个是符合四舍五入
print("限制宽度为7位,小数点后两位后:%7.2f" % score)
  1. 快速进行格式化的操作
    这个就不用试用占位符号了,直接就可以将成员变量引用过来的。
name = "传智播客"
set_up_year = 2006
stock_price = 19.99

print(f"我是{name},我成立于:{set_up_year},我今天的股价是:{stock_price}")

# 对表达式进行格式化
print("1*1的结果是:%d" % (1*1))
  1. input
# print("请告诉我你是谁?")
name = input("请告诉我你是谁?")
print("你的名字是%s" % name)

python三种循环

  1. if-else
# if-else组合判断
age = int(input("请输入您的年龄"))

if age > 18:
    print("您已经成年了")
else:
    print("您还未成年")
  1. if-elif-else
height = int(input("请输入您的身高:"))
if height < 100:
    print("身高小于100")
elif height < 150:
    print("身高小于150")
else:
    print("身高太高了")
  1. while循环

while循环是可以设置计数器的,for循环是不可以设置计数器的,for循环是从容器中将所有的元素一个一个地都取出来。

# i = 0
# while i < 10:
#     print("小美我喜欢你")
#     i += 1

i = 1
sum = 0
while i <= 100:
    sum += i
    i += 1
print(sum)
  1. for循环
# for循环 将字符串的内容挨个取出
name = "lihuikang"
for x in name:
    print(x)

# range语法的基本使用
for x in range(5):
    print(x)

# 不含第二位数字
for x in range(5,10):
    print(x)

for x in range(1,10,2):
    print(x)

for x in range(10):
    print(f"送你{x}朵玫瑰花")

函数

函数的传入参数

# 函数的传入参数
def add(x,y):
    result = x + y
    print(f"{x} + {y} 的值是:{result}")

add(1,2)

函数的返回值

# 函数的返回值
def add(x,y):
    result = x + y
    return result
result = add(1,2)
print(result)
相关文章
|
28天前
|
Python
在 Python 中,如何将日期时间类型转换为字符串?
在 Python 中,如何将日期时间类型转换为字符串?
120 64
|
20天前
|
存储 测试技术 Python
Python 中别再用 ‘+‘ 拼接字符串了!
通过选择合适的字符串拼接方法,可以显著提升 Python 代码的效率和可读性。在实际开发中,根据具体需求和场景选择最佳的方法,避免不必要的性能损失。
41 5
|
25天前
|
Python
Python 中一些常见的数据类型
Python 中一些常见的数据类型
77 8
|
24天前
|
Python
使用Python计算字符串的SHA-256散列值
使用Python计算字符串的SHA-256散列值
25 7
|
1月前
|
Python
在 Python 中,如何将字符串中的日期格式转换为日期时间类型?
在 Python 中,如何将字符串中的日期格式转换为日期时间类型?
35 6
|
1月前
|
Python
Python中不同数据类型之间如何进行转换?
Python中不同数据类型之间如何进行转换?
27 6
|
1月前
|
存储 开发者 Python
Python 的数据类型
Python 的数据类型
39 6
|
存储 监控 API
Python笔记2(函数参数、面向对象、装饰器、高级函数、捕获异常、dir)
Python笔记2(函数参数、面向对象、装饰器、高级函数、捕获异常、dir)
75 0
|
7月前
|
Python
Python基础 笔记(九) 函数及进阶
Python基础 笔记(九) 函数及进阶
53 6
|
4月前
|
存储 Python
Python笔记8 函数
本文是作者的Python复习笔记第八篇,全面介绍了Python中的函数定义与使用,包括函数的参数传递(位置参数、关键字参数、默认参数、列表参数、任意数量参数和关键字参数)、函数的返回值以及如何创建和调用函数库(模块),并提供了丰富的示例代码。
32 0