zoukankan      html  css  js  c++  java
  • 12/04

    1. 写一段程序实现以下功能

      读入用户输入的姓名,打印"你好!xxx",要求输出的字符串占20个宽度,不够补*,居中对齐

    i = input("输入名字:")
    s = ("你好!%s" %i)
    print ('{:*^20}'.format(s))
    

      

    2.人类的思维习惯于"四舍五入",请问int在做强转的时候会四舍五入吗?如果不会,想办法是的其进行四舍五入

    i = float (input("输入一个数:"))
    n = (i+0.5)
    print (int(n))

    3.python中的变量名字可以是中文吗?请尝试

    可以

    4.下列语句哪个是非法的(b)

        a. x = y = z = 1  b. x=(y=z+1)  c. x, y = y, x  d. x += y

    5.以下各个语句的值

      a. 1 and 0 or 2 and 3 or 3 and 0 

      b. 100 % 2 and 5 or 3 and 5 < 100 

      c. 5 is 6 or 3 and 0 and 3 

    a: 3      b:True   c:0

  • 相关阅读:
    Exchanger
    信号量Semaphore
    CountDownLatch
    Condition
    WCF接口实例介绍
    时间显示
    pymysql-execute
    python之迭代器与生成器
    python之装饰器
    python之函数
  • 原文地址:https://www.cnblogs.com/ZHang-/p/10066002.html
Copyright © 2011-2022 走看看