文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python note #1

2023-01-30 23:43

关注

To record my process of studying python and to practice my English meanwhile, I'd like to start write my blog about python with English. = ^ =

 

Part 1_Hello World!

 1 print (' Hello World! ') 

 

This code can show the best reason why I'd like to study python. Because it's so simple, clean and elegant. With python, setting language environment is not needed anymore. Just use 'print', everything is done!

 

Part 2_History & Development of Character Encoding

  • ASCII: best for English, which only takes up 1 bytes of your storage. 

 

  • Chinese: take up 3 bytes

  • Unicode: ISO released unicode to unite diffrent standards of character encoding between countries. But it took up 2 bytes to store English. To improve it, utf-8 was released. With utf-8, only 1 bytes was needed while storing English.

 

Part 3_Variety

Rules

  •   Combination of character, number and underscores.
  •   Don't use key words as the name of the variety.
  •   Name the variety with its meaning.
  •   With CAPITAL LETTERS naming a variety, it means that the variety is constant.

How to use?

1 name = 'It's a good day!'
2 # name a variety
3 name2 = name
4 # give a value to a new variety
5 print (' What' the weather like today?', name, name2)
6 # use varieties
variety
 1 '''
 2 function1:多行注释
 3 function2:多行打印
 4 '''
 5 message='''
 6 Do you like this blog?
 7 If yes, that's great!
 8 If no, leave you suggestions, and I'll improve it ASAP!
 9 '''
10 print(message)
usage of '''

 

 Part 4_Interaction

'Input' is used to get information from users. And 'print' is used to output the information.

 1 name = input (' Please input your name:')
 2 age = input("Please input your age:") 
 3 #加入int,代表integer,整型,字符串的格式化
 4 job = input("Please input your job:")
 5 salary = input("Please input your salary:")
 6 
 7 info = '''
 8 -------------------info of {NAME} --------------------------
 9 NAME: {NAME}
10 AGE: {AGE}
11 JOB: {JOB}
12 SALARY: {SALARY}
13 ----------------------------------------------------------------
14 ''' .format(NAME=name, AGE=age, JOB=job, SALARY=salary)
15 
16 print (info)
interaction

 

Part 5_Loop ( if, elif, for, while )

Combination of If, While and Elif

Qiao is one of my roomates. To show my respect for her, I took advantage of her birth year information to write a code for you to guess. Ofcourse, please do not read the code directly. Cuz in this way, you'll get the answer directly...

 1 birthyear_of_qiao = 1997
 2 count = 0
 3 while count<3:
 4     guess = int(input("猜猜乔的出生年份:"))
 5     if guess == birthyear_of_qiao:
 6         print("干的漂亮,你猜对了!")
 7         break
 8     elif guess > birthyear_of_qiao:
 9         print("她哪有那么年轻?!!!")
10     else:
11         print("她还没那么老,好嘛。。。")
12     count +=1
13     if count == 3:
14         if_continue = input('是否要继续呢?继续的话请输入Y,退出的话请输入N:')
15         if if_continue == 'Y':
16             count = 0
17         else:
18             print ('猜不中还早早退出,太塑料兄弟情了!')
19             break
20 else:
21     print('游戏失败。。。')
loop_if_while_elif

For

 1 # continue是跳出本次循环,进入到下一次循环
 2 # break是结束全部循环
 3 for i in range(0,10,2):
 4     if i <5:
 5         print("loop",i)
 6     else:
 7         continue
 8     print('嘻嘻')
 9 
10 # 循环套循环,执行一次大循环,下面执行六次小循环
11 for i in range(10):
12     print ('-------------------',i)
13     for j in range(10):
14         print(j)
15         if j>5:
16             break

 

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯