博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python3
阅读量:5127 次
发布时间:2019-06-13

本文共 1208 字,大约阅读时间需要 4 分钟。

http://www.cnblogs.com/wupeiqi/articles/4938499.html

http://www.cnblogs.com/alex3714

z=100

print("x乘以y=", z  ) 

 

常量:在py里面所有的变量都是可变的 ,所以用全部大写的变量名来代表次变量为常量

 

注释

单行注释 用#
多行注释用三个单引号或三个双引号 '''被注释的内容'''

 

Python2.x == Assic 默认编码

#!-*- coding:utf-8 -*-
#coding:utf-8

print u"我爱北京天安门"     //  双引号前面加个u,把他变成unicode

msg=u"我爱北京天安门"

print msg

print type(msg)   //返回unicode类型

python3.x == unicode默认编码

 

 

用户输入例子:

age_of_princal = 56 guess_age = int(   input(">>:") ) ''' if guess_age == age_of_princal then    print("yes") else    print("no ") ''' if guess_age == age_of_princal:     print("Yes,you got it..") elif guess_age > age_of_princal:     print("shoud try samller..") else:     print("try bigger ...")

 

if 另外小例子:

score = int(input("score:")) if score > 90:     print("A") elif score > 80:     print("B") elif score > 70:     print("C") elif score > 50:     print("D") else:     print("滚")

 

while小例子:

num = 1 while num<=10:     print(num)     num += 1

 

逻辑运算:

and 且,并且

只有两个条件全部为True(正确)的时候, 结果才会为True(正确)

条件1 and 条件2
5>3 and 6<2 True

or 或,或者
只要有一个条件为True,则结果为Ture,
5>3 or 6<2
真 或 假

not 不,雅蠛蝶

not 5>3 == False

not 5<3 == True

 

打印多行:

msg='''hello 1      //这样打印多行

hello 2

hello 3

'''

print(msg)

 

转载于:https://www.cnblogs.com/alexhjl/p/7365594.html

你可能感兴趣的文章
js判断当前浏览器
查看>>
玩转HTTP
查看>>
继承 多态 java相关基础知识
查看>>
iter创建一个可以被迭代的对象
查看>>
【uwp】浅谈China Daily中数据同步到One Drive的实现
查看>>
报错:Request failed: unacceptable content-type: text/html
查看>>
iOS- static extern const
查看>>
“软件工程第二次作业—结对编程”
查看>>
Markdown的使用简介
查看>>
.netcore2.0发送邮件
查看>>
在vue中使用weixin-js-sdk自定义微信分享效果
查看>>
CentOS 初体验十四:阿里云安装Gitlab
查看>>
十分钟轻松让你认识Entity Framework 7
查看>>
Web开发框架之权限管理系统
查看>>
SQL Server索引语法 <第四篇>
查看>>
react新手报错日记
查看>>
Android 上传文件到 FTP 服务器
查看>>
参考性文章,也算有用吧
查看>>
javaScriptObject转String
查看>>
UE4 优化参数
查看>>