Python学习

Posted sanchauncy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习相关的知识,希望对你有一定的参考价值。

单行注释

#这是一个注释
print("Hello Python")

print("无忌哥哥")  #输出无忌哥哥

 多行注释

"""
这是个多行注释
可以写很多内容
""" print("Hello Python")

算术运算符

print(10+10)  #
print(10-10)  #
print(10*10)  #
print(10/10)  #
print(32//11) #取整除
print(12%5)  #取余数
print(2**3)  #2的3次方

变量定义

 变量名 =  值

qq_number = "1921073464"
qq_passwd = "*******"

print(qq_number)
print(qq_passwd)

例:超市买苹果

#定义苹果价格
price = 8.5
#定义苹果重量
weight = 6
#计算金额
money = price*weight
print(money)

变量类型(python定义数据时不需要指定类型)

"""
姓名:无忌哥哥
年龄:20
性别:男
身高:182
体重:65
"""

name = "无忌哥哥"
age = 20
sex = ""
height = 182
weight = 65

不同类型数据的计算

i = 10 #整型
f = 10.5  #浮点型
b = true  #布尔型(运算代表1,false代表0)

"""
i+f=20.5
i+b=11
f+b=11.5
"""

 字符串拼接

first_name = "Tom"
last_name = "Jace"
print(first_name+last_name)


#字符串变量可以使用*拼接相同的字符
print("哈哈"*20)

 

 变量的输入

#输入函数input()
qq_number = input("请输入qq账号")
print(qq_number)

#类型转换函数
int("123")
float("12.3")

 

例:超市买苹果Plus

price_str = input("输入苹果价格")
weight_str = input("输入苹果质量")
price = float(price_str)
weight = float(weight_str)
print(price*weight)

 

格式化输出

 

以上是关于Python学习的主要内容,如果未能解决你的问题,请参考以下文章

Python学习总结

学习 PyQt5。在我的代码片段中找不到错误 [关闭]

python 学习python语法的片段

python小白学习记录 多线程爬取ts片段

python ipython:机器学习片段

30 段 Python 实用代码