首页
社区
课程
招聘
[原创][原创]日常看猴之python细谈(hello world的怪谈【一】)
发表于: 2021-6-11 22:22 3706

[原创][原创]日常看猴之python细谈(hello world的怪谈【一】)

2021-6-11 22:22
3706

In this chapter you will learn the variety of data available in the Python program, also how to store data in variables and how to use them in the program.在本章中,您将学习Python程序中提供的各种数据,以及如何将数据存储在变量中以及如何在程序中使用它们。


                                        打印(“你好,世界!”)

这句经典语句几乎是python入门书的标准开头, 我们把它做个小小的变形

message=("hello,world")print message

一个很牛的小工具 <<<戳我

这是运行结果,如你所料

hello,world
sandbox> exited with status 0


这里添加了一个名为Message的变量。每个变量都存储一个值--与该变量相关联。这里,存储的值是文本“Hello  world!”。

又例如这样:

message=("nice_demo")
nice_demo=("hello world")print nice_demo


hello world
sandbox> exited with status 0

 time sleep() 函数

好了好了开始加大难度了,现在用 time sleep() 函数__推迟调用线程的运行,可通过参数secs指秒数,表示进程挂起的时间。 

语法:time.sleep(推迟执行的秒数)
import time
print("Loading",end = '')for i in range(10):
    print(".",end = '',flush = True,)
    time.sleep(0.4)
print('\n',"Hello World!")

在这个代码中有动态Loading效果,不妨试试?

实在想不出其他馊点子了,过几天睡个好觉试着能有更好的灵感吧...

https://wap.gamersky.com/news/Content-460158.html附上一位大佬的作品~

点击我的主页查看更多有趣文章~https://blog.csdn.net/cao123456oac?spm=1001.2014.3001.5343



[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 1
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//