码迷,mamicode.com
首页 >  
搜索关键字:python3    ( 12579个结果
python3.7-初学篇-08
from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!" if __name__ == '__main__': app.run() ...
分类:编程语言   时间:2018-12-12 00:32:40    阅读次数:174
python3.7-初学篇-16
for i in range(10): if 1%2 !=0: print(i) continue i += 2 print(i) ...
分类:编程语言   时间:2018-12-12 00:32:01    阅读次数:155
python3.7-初学篇-12
score = int ( input ( '请输入一个分数:' ) )if 100 >= score >= 90: print('A')if 90 > score >= 80: print('B')if 80 > score >= 80: print('C')if 60 > score >= 0: ...
分类:编程语言   时间:2018-12-12 00:25:23    阅读次数:164
python3.7-初学篇-14
score = int (input ('请输入一个分数:'))if 100 >= score >= 90: print ('A')elif 90 > score >= 80: print ('B')elif 80 > score >= 60: print ('C')elif 60 > score ...
分类:编程语言   时间:2018-12-12 00:23:57    阅读次数:144
python3.7-初学篇-13
score = int (input ('请教您的分数:'))if 100 >= score >= 90: print ('A')else: if 90 > score >= 80: print ('B') else: if 80 > score >= 60: print ('C') else: i ...
分类:编程语言   时间:2018-12-12 00:23:20    阅读次数:190
python3.7-初学篇-10
import randomsecret = random.randint(1,10)print(' 我爱鱼C工作室 ')temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")guess = int(temp)while guess != secret: temp = input(" ...
分类:编程语言   时间:2018-12-12 00:20:10    阅读次数:252
python3.7-初学篇-02
# -*- coding: utf-8 -*-print ("Hello World!你好")print ("Hello Again")print ("I like typing this.")print ("This is fun.")print ('Yay! Printing.')print ( ...
分类:编程语言   时间:2018-12-12 00:19:52    阅读次数:170
python3.7-初学篇-06
print(' 我爱鱼C工作室 ')temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")guess = int(temp)if guess == 8: print("我草,你是小甲鱼心里的蛔虫吗?") print("哼,猜中了也没有奖励!")else: print("猜猜啦,小甲 ...
分类:编程语言   时间:2018-12-12 00:16:56    阅读次数:191
python3.7-初学篇-17
import sysimport pygamedef run_game(): #initialize game and create a dispaly object pygame.init() screen = pygame.display.set_mode((1200,800)) pygame. ...
分类:编程语言   时间:2018-12-12 00:15:16    阅读次数:198
python3.7-初学篇-09
if guess == 8: print( "哇草,你是小甲鱼心里的蛔虫吗?") print( "哼,猜中了也没有奖励" )else: if guess > 8: print( "哥,大了大了~~~") else: print( "嘿,小了!小了!!")print ( "游戏结束,不玩啦~~~~ " ...
分类:编程语言   时间:2018-12-12 00:09:54    阅读次数:187
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!