python 用for循环输入数字1-7判断输出相应星期几?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 用for循环输入数字1-7判断输出相应星期几?相关的知识,希望对你有一定的参考价值。

你好,

代码如图:

上面代码的思路:

    先定义一个字典,数字1-7是键,星期一到星期日为相应键的值;

    使用for循环每次从1到7中取1个值作为字典中的键,然后打印字典对应该键的值

写在最后:

    代码总共也没几行,你自己敲一下,我怕贴出来后会被判违规

希望可以帮到你,如果上面代码和你的实际情景不附,欢迎追问

参考技术A 代码如下,仅供参考:

1
2
3
weeks=['一','二','三','四','五','六','日']
answer=int(input('请输入1-7的整数:'))
print('今天为星期'+weeks[answer-1])

注意,此代码没有对输入数字进行有效性确认,也就是说假设输入是在1~7之间!

python入门(输入输出if else 判断流while循环for循环)

# -*- coding:utf-8 -*-        ———————— 申明字符编码集

注释:当行 —    #

           多行 —    “”” “”” 或者 ‘’’ ‘’’  (在python中单引号双引号没有区别)

1、 输出

   print ("hello word !")

2、 变量

    定义编码:name = "hui"

    使用编码:print ("name is",name)  (变量之间逗号隔开)

    打印变量数据类型:print(type(name))

3、 用户输入

    输入格式:username = input(“username:”)

    转换输入数据类型:age=int( input(“password:”) )

    加密显示输入:

          import  getpass #引用密码包

          password = getpass.getpass("password:")

 4、格式化输出

    列:name = input("name:")

           age = input("age:")
           sex = input("sex:")
           height = input("height:")

          # 方式1:(字符串拼接用 +)--建议不使用

          msg = ‘‘‘------- msg of ‘‘‘ + name + ‘‘‘ -------
          name:‘‘‘ + name +‘‘‘
          age:‘‘‘ + age + ‘‘‘
          sex:‘‘‘ + sex + ‘‘‘
          height:‘‘‘ + height

          print (msg)

         方式2:占位符 %s (s——string简写)--不推荐

         msg = ‘‘‘------- msg of %s -------
         name:%s
         age:%s
         sex:%s
         height:%s
          ‘‘‘%(name,name,age,sex,height)

        print (msg)

       方式3:--不推荐

  msg = ‘‘‘------- msg of {0} ------- 
  name:{0}
age:{1}
sex:{2}
height:{3}
‘‘‘.format(name,age,sex,height)

      print (msg)

  方式4:推荐使用
  msg = ‘‘‘------- msg of {name_1} ------- 
name:{name_1}
age:{age_1}
sex:{sex_1}
height:{height_1}
‘‘‘.format(name_1=name,
          age_1=age,
           sex_1=sex,
           height_1=height)
print (msg)

4、 if else 流程判    username_a = ‘qaz‘ 

    password_a = ‘123‘
username = input("username:")
password = input("password:")
if username == username_a and password == password_a:
    print("Welcome user {name} login...".format(name=username))
else:
    print("Invalid username or password!")

 5while 循环

username_a = ‘qaz‘
password_a = ‘123‘
entry_count=0
while entry_count<3:
    username = input("username:")
    password = input("password:")
    if username == username_a and password == password_a:
        print("Welcome user {name} login...".format(name=username))
        break
    else
:
        print("Invalid username or password! Please Try Again")
    entry_count +=1
else:
    print("you have tried too many times..fuck off")

 

6、 for 循环

for i in range (0,10,1):
    print(‘----------‘, i)
    for j in range(10):
        if j > 5:
            break
        else
:
            print(j)

 

 

 


















































以上是关于python 用for循环输入数字1-7判断输出相应星期几?的主要内容,如果未能解决你的问题,请参考以下文章

python 做一个循环 要求输入大于0的数字 判断其不

python入门(输入输出if else 判断流while循环for循环)

JAVA中 判断输入的东西是不是是数字怎么弄啊?急求啊

Python笔记---DAY3:格式化输出for循环列表操作

2Python自学第二天(if判断,for循环,while循环)

入门一:python变量获取值标准输出循环判断语句