标签:Python3.6.5
我们总是找借口说还有时间去做某事,或者完成某事,结果总是不了了之。比如拖到现在才写第一课听课笔记。第一节课,老师对以下内容做了分享,大致分为
环境配置
开发平台:Mac OS Version 10.13.2
Python简单介绍
注释
单行注释:
# this is a comment.
‘‘‘
This is first line of comment.
This is second line of comment.
‘‘‘
变量
input 和 print
name = input("Please input your name: ")
age = input("Please input your age: ")
print("Hello World, hello Ptyhon!")
print("His name is %s", name)
print("His name is {}".format(name))
print("His name is %s"%name)
类型转换
命名规则
运算符优先级
age = 0
#age = 6 和print是属于同一代码逻辑块。
if name == "xiaolongtu":
age = 6
print("The age is {}".format(age))
#age = 6 和print不属于同一代码逻辑块。
if name == "xiaolongtu":
age = 6
print("His age is {}.format(age))
时间有限,应该要贴些代码段或者图片的。下次希望笔记能做的更好点。晚安。
标签:Python3.6.5
原文地址:http://blog.51cto.com/xqtyler/2094194