码迷,mamicode.com
首页 > 编程语言 > 详细

python3基础1

时间:2019-12-15 11:06:52      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:--   使用   循环   python3   你好   引号   基础语法   UNC   大于   

function:python基础语法练习
"""

#import this

name = "tom"
age = 29

str1 = "hello, " + name + "; age," + str(age)
str2 = "hello, %s ; age, %d " %(name, age)
str3 = "hello, {n} ; age, {a}".format(n=name, a=age)
print(str3)


# n = input("input you name:")
# print("hello-->", name)

# 引号的使用
print("他说:‘你好‘! ")
print(‘他说:"你好"! ‘)

‘‘‘
‘‘‘
# 顺序、分支、循环

"""
a == b 相等
a >= b 大于等于
a <= b 小于等于
a != b 不等于
a is b 是
a is not b 不是
"""
a = 4
b = 5
if a > b:
print("a big")
else:
print("b big")

if True:
print("run this info")

c = True
if c is True:
print("run this info")

if c is not False:
print("run this info")

d = None
if d is None:
print("d is None")

number = 77
if number > 90:
print("优秀")
elif number > 70:
print("良好")
elif number > 60:
print("及格")
else:
print("不及格")


hello = "hello"
for i in hello:
print(i)

python3基础1

标签:--   使用   循环   python3   你好   引号   基础语法   UNC   大于   

原文地址:https://www.cnblogs.com/hy546880109/p/12041857.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!