python第一天---我要入个门
"""
一个用户登录的案例 """
# 永远等待,直到用户输入值 # 变量 name_r = input("请输入用户名")
passwd = input("请输入密码:") print(name_r)
print(passwd) n1 = "root"
n2 = "user" print(n1)
print(n2) """
变量只能有字母、数字、下划线组成
不能用数字开头,关键字也不能使用['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']
不要和python内置的东西重复
""" """
if基本语句
if条件:
内部代码块
else:
内部代码块 if支持嵌套
if 1==1:
if 2 == 2:
print()
else:
。。。
else:
。。。 if elif
inp = input(“第三方hi”): if inp == “而无法收到”:
elif inp == “第三方”:
pass
elif inp == “第三方hi”:
pass
else:
pass
print() pass 表示什么都不执行
""" """
8.基本数据类型
字符串(引号)
加法
n1 = “撒打算”
n2 = “撒打算” n3 = n1 + n2 乘法
n1 = “撒打算”
n2 = n1 * 10 数字
age = 13 加、减、乘、除、取余、幂
a1 = 10
a2 = 20 a3 = a1 + a2
a4 = a1 - a2
a5 = a1 * a2
a6 = a1 / 10
a7 = a1 % a2 #a1 // a2 取商
a8 = a1 ** a2 判断奇偶数
a = 13
temp = a % 2
if temp == 0 :
print("o")
else:
print("1")
""" """
9 循环
while 1== 1 :
print(ok)
"""
# while 输出 1 2 3 4 5 6 8 9 10 count = 1 while count != 11 :
if count == 7:
pass
else:
print(count)
count = count + 1 # 2、求1-100的所有数的和 numb = 0
temp = 0 while numb <= 100:
temp = numb +temp
numb = numb + 1
print("1-100的所有数的和:",temp) # 输出 1-100 内的所有偶数 numb = 0 while numb <= 100:
temp = numb % 2
if temp == 0:
print(numb)
else:
pass
numb = numb + 1 # 输出 1-100 内的所有奇数 numb = 0 while numb <= 100:
temp = numb % 2
if temp == 0:
pass
else:
print(numb)
numb = numb + 1 # 5、求1-2+3-4+5 ... 99的所有数的和 numb = 0
temp = 0 while numb <= 100:
t = numb % 2
if t == 0:
temp = temp - numb
else:
temp = temp + numb
numb = numb + 1
print("1-100的所有数的和:",temp) # 6、用户登陆(三次机会重试)
# user:root passwd :123456 count1 = 0 while count1 < 3:
user_name = input("please write your name:")
passwd = input("your passwd:") if user_name == 'root' and passwd == '123456' :
print("welcome in")
break
else:
print("error!agenin wirte")
count1 = count1 + 1 # 问题:公鸡5文钱一只,母鸡3文钱一只,小鸡3只一文钱,用100文钱买100只鸡,其中公鸡,母鸡,小鸡都必须要有,问公鸡,母鸡,小鸡要买多少只刚好凑足100文钱?
"""
5*公鸡 < 100
3*母鸡 < 100
1*小鸡 < 300
公鸡+母鸡+小鸡 = 1000
"""
for g in range(1, 21):
for m in range(1, 34):
for x in range(1, 301):
score = g * 5 + m * 3 + x / 3
if score == 100 and g + m + x == 100:
print('公鸡 %s 只,母鸡 %s 只,小鸡 %s 只' % (g, m, x))
演示结果:
请输入用户名wqe
请输入密码:wqe
wqe
wqe
root
user
1
2
3
4
5
6
8
9
10
1-100的所有数的和: 5050
0
2
4
6
8
10
12
14
16
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46
48
50
52
54
56
58
60
62
64
66
68
70
72
74
76
78
80
82
84
86
88
90
92
94
96
98
100
1
3
5
7
9
11
13
15
17
19
21
23
25
27
29
31
33
35
37
39
41
43
45
47
49
51
53
55
57
59
61
63
65
67
69
71
73
75
77
79
81
83
85
87
89
91
93
95
97
99
1-100的所有数的和: -50
please write your name:root
your passwd:qwewqe
error!agenin wirte
please write your name:root
your passwd:123456
welcome in
公鸡 4 只,母鸡 18 只,小鸡 78 只
公鸡 8 只,母鸡 11 只,小鸡 81 只
公鸡 12 只,母鸡 4 只,小鸡 84 只
python第一天---我要入个门的更多相关文章
- 简学Python第一章__进入PY的世界
#cnblogs_post_body h2 { background: linear-gradient(to bottom, #18c0ff 0%,#0c7eff 100%); color: #fff ...
- webpack实践(一)- 先入个门
一.前言 webpack是个啥呢?看官网的这段描述. webpack 是一个现代 JavaScript 应用程序的静态模块打包器(module bundler) 在我以前做纯html.css. ...
- python第一站
python 第一站,豆瓣-美国末日评论小爬虫 最近学习python,但是光是看书看视频学习,总是觉得掌握的不够扎实.所以就决定自己去写写爬虫,当带着目的性去学,也许更容易发现自己需要什么.这是酝酿多 ...
- Python第一天 安装 shell 文件
Python第一天 安装 shell 文件 python里面一切都是对象 object 代码缩进:建议用四个空格来缩进,不要用tab键 安装 Linux自带python,windows需要下载m ...
- Python第一天——入门Python(1)数据定义
数据类型: 什么是数据? 在计算机科学中,数据是指所有能输入到计算机并被计算机程序处理的符号的介质的总称,是用于输入电子计算机进行处理,具有一定意义的数字字母.符号和模拟量等的统称.现在计算机存储和处 ...
- Python 第一课笔记
1.Hello World程序的两种方法 在windows下执行 1.编辑器里输入,不用编译 print("Hello World!") 直接就可以运行 2.可以 ...
- Python第一行代码
Python版本:Python 3.6.1 0x01 命令行交互 在交互式环境的提示符>>>下,直接输入代码,按回车,就可以立刻得到代码执行结果.现在,试试输入100+200,看看计 ...
- python第一周总结
这一周将开启学习python第一周,开始之前学过python但是没有学精,到现在基本快忘记了,只能记住大概什么样子了emmm 作业计算bmi 这周作业为计算bmi,小明身高1.75,体重80.5.请根 ...
- python第一章:简介与安装--小白博客
Python简介 Python是一种计算机程序设计语言.是一种动态的.面向对象的脚本语言,最初被设计用于编写自动化脚本(shell),随着版本的不断更新和语言新功能的添加,越来越多被用于独立的.大型项 ...
随机推荐
- python 嵌套字典取值增强版
def getdictvalue(d,code): result=[] if isinstance(d, dict) : try: value = d[code] result.append(valu ...
- Django连接MySQL(二)
1.首先我们需要创建好项目 2.安装MySQL数据库 3.setting中修改database设置 DATABASES = { 'default': { 'ENGINE': 'django.db.ba ...
- [C++] typeid关键字使用方法
typeid 关键字的作用就是获取一个表达式是类型,返回表达式的类型 表达式可以是类型名称.变量名.数字.字符串.指针.结构体等 #include <iostream> using nam ...
- java中nextLine()与next()的区别
java中的next()和nextLine()还是有很大区别的. next()一定要读取到有效字符后才可以结束输入,对输入有效字符之前遇到的空格键.Tab键或Enter键等结束符,next()方法会自 ...
- 使用HttpClient访问WebHook
代码: import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.c ...
- Java对象为啥要实现Serializable接口
Serializable接口概述 Serializable是java.io包中定义的.用于实现Java类的序列化操作而提供的一个语义级别的接口.Serializable序列化接口没有任何方法或者字段, ...
- 给div添加disabled属性
<div id="CompanyId" name="CompanyId" type="select" ></div> ...
- Amazon aws s3 加速
aws s3加速 - 工长山的专栏 - CSDN博客https://blog.csdn.net/xuanwu_yan/article/details/79160034 [实测有效]“解决国内访问s3. ...
- 深入学习c++--多线程编程(一)
1. 简介 2. 线程使用 2.1 demo #include <iostream> #include <thread> #include <future> usi ...
- apt-get和yum
1.apt-get是dpkg系的,或者说debian系的,如ubuntu 2.yum是红帽系的,如中标麒麟