设为首页收藏本站

Crossin的编程教室

 找回密码
 立即加入
查看: 42712|回复: 0
打印 上一主题 下一主题

【Python 第14课】 字符串格式化

[复制链接]

0

主题

0

好友

48

积分

新手上路

Rank: 1

楼主
发表于 2018-5-29 10:43:52 |显示全部楼层
  1. from random import randint

  2. num=randint(23,218)

  3. print('guess what i think?')

  4. bingo = False

  5. while bingo == False:
  6.     a=int(input())
  7.    
  8.     if a >num:
  9.         print('%d is too big'%a)

  10.     if a<num:
  11.         print ('%d is too small'%a)

  12.     if a==num:
  13.         print('excellent!bingo!congratulations!the correct answer is %d'%a)

  14.         bingo=True
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即加入

QQ|手机版|Archiver|Crossin的编程教室 ( 苏ICP备15063769号  

GMT+8, 2024-5-28 21:50 , Processed in 0.016285 second(s), 22 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

回顶部