摘要: print(' 我爱鱼C工作室 ')temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")guess = int(temp)if guess == 8: print("我草,你是小甲鱼心里的蛔虫吗?") print("哼,猜中了也没有奖励!")else: print("猜猜啦,小甲 阅读全文
posted @ 2018-12-11 21:19 九头龙鳌龟 阅读(115) 评论(0) 推荐(0) 编辑
摘要: print ("I will now count my chickens:") print ("Hens"), 25 + 30 / 6print ("Roosters"), 100 - 25 * 3 % 4 print ("Now I will count the eggs:") print (3 阅读全文
posted @ 2018-12-11 21:18 九头龙鳌龟 阅读(247) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# A comment, this is so you can read your program later.# Anything after the # is ignored by python. print ("I could have code 阅读全文
posted @ 2018-12-11 21:17 九头龙鳌龟 阅读(186) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-print ("Hello World!你好")print ("Hello Again")print ("I like typing this.")print ("This is fun.")print ('Yay! Printing.')print ( 阅读全文
posted @ 2018-12-11 21:16 九头龙鳌龟 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 第一个程序 print “Hello World!” print“Hello Again” print “I like type” print "This is fun." 阅读全文
posted @ 2018-12-11 21:13 九头龙鳌龟 阅读(200) 评论(0) 推荐(0) 编辑