基本数据类型.py

# @Auther: Liu Linke
print("hello world")

# 注释的意思
# 加一个空格是(代码风格)

# 变量不用提前声明
eg:a=int(c语言)
eg:a = 1(pyphon)
# 注意代码风格 等号两边要各留一个空格
# 缩进
eg:
def a():
print('hello')
print('hello')
print('hello')
print('hello')
print('hello')
print('hello')
# 就如后面两个就不属于a的函数体 ,用缩进表示一个整体。
原文地址:https://www.cnblogs.com/lk66/p/13741186.html