日循环

Mary-Kate Olsen
发布: 2024-11-27 11:15:12
原创
655 人浏览过

Day  Looping

pycache:

pycache 是 Python 创建的目录,用于存储 Python 脚本的编译版本。这些文件具有 .pyc 扩展名,并在执行 Python 脚本时自动生成。

*编程规则:*
1) 已知与未知
2)不要考虑整个输出
3)只考虑下一步
4)必要时引入变量
5) 密切观察节目

编写一个程序来打印 5 个连续的数字。

count = 1
if count<=5:
    print(1, end=' ')
    count=count+1 #count = 2
if count<=5:
    print(1, end=' ')
    count=count+1 # count = 3

if count<=5:
    print(1, end=' ')
    count=count+1 # count = 4

if count<=5:
    print(1, end=' ')
    count=count+1 # count = 5

if count<=5:
    print(1, end=' ')
    count=count+1 # count = 6
登录后复制

if 语句,如果 count

1 1 1 1 1
登录后复制
登录后复制

替代实现:

count = 1
while count <= 5:
    print(1, end=' ')
    count += 1
登录后复制

如果目标是以更简洁的方式重复这个逻辑,可以使用循环

1 1 1 1 1
登录后复制
登录后复制

多个 if 的简写形式被称为 while。

print() 函数使用两个可选参数 sep 和 end 来控制其输出的格式。

sep(分隔符):

指定插入到传递给 print() 的多个参数之间的字符串。

print("Hello", "World", sep=", ")
登录后复制
Hello, World
登录后复制
print("Kuhan",'guru','varatha',sep='-')
登录后复制
Kuhan-guru-varatha
登录后复制

结束(结束字符):
指定附加在输出末尾的字符串

print("Hello", end="!")
print("World")

登录后复制
Hello!World
登录后复制

组合 sep 和 end:

print("Python", "is", "fun", sep="-", end="!")
登录后复制
Python-is-fun!
登录后复制

参数类型:

位置参数:

参数按照函数定义中指定的确切顺序传递。

def add(no1,no2):
    print(no1+no2)
add(10,20)
登录后复制

这会调用函数 add,将 10 作为 no1 传递,将 20 作为 no2 传递。

30
登录后复制

可变长度参数:

允许传递可变数量的参数。

如何从日期时间模块 python 中仅获取日期:

from datetime import date
current_date=(date.today())

print("Current Date:",current_date)
登录后复制
Current Date: 2024-11-25
登录后复制

以上是日循环的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:dev.to
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板