写程序的第一要求就是要胸有成竹
因为程序语言比如python是帮助你把解决办法描述出来的一个工具,
先有办法,才有表达,有了表达,才能执行!
编程语言的解释器或编译器把你下达的指令翻译成计算机能理解的机器语言(01编码,人看了会直接晕菜)
编程语言一般都具备以下要素,Python也不例外:
1 接受外界输入并保存的能力
2 把处理信息输出的能力
3 条件分支能力
4 循环处理能力
5 数学计算能力
6 改变数据的能力
7 用程序代码模拟真实世界
接下来我们在视频里介绍了pycharm的简单使用,然后在上面编写了我们的第一个程序,程序主要是干了查~户~口这件事!
# This program says hello
print('Hello world!')
# Ask the user to input their name and assign it to the name variable
print('What is your name?')
myName = input()
# Print out greet followed by the name
print('It is good to meet you, ' + myName)
# Print out the length of name
print('The length of your name is:'+str(len(myName)))
# ask for your age and show how old you will be next year
print('What is your age?')
myAge = input()
print('You will be ' + str(int(myAge) + 1) + ' in a year.')
'''
So are multiline comments
'''
出现程序错误可咋办?
只能凉拌(解读错误信息,搜索引擎,stackoverflow.net, ......)
发求助帖子之前要做足功课:
详情请看视频......