python基础

Posted liuhongshuai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础相关的知识,希望对你有一定的参考价值。

#第一个python程序
技术分享图片
#第一个python程序
# print(‘hello world‘)
# print(‘你好,世界‘)
# print(‘alex‘,‘wusir‘,sep=":")
# print(‘alex‘,end="	")
# print(‘wusir‘)
# print(‘hello world‘,file=open(‘hello.txt‘,‘w‘,encoding=‘utf-8‘))
View Code
#变量的命名规范
技术分享图片
#变量的命名规范
# AgeOfAlex=18#驼峰体
# age_of_alex=18#下划线
View Code
#查看数据类型type
技术分享图片
#查看数据类型type
# print(type(12))
# print(type(‘hello‘))
# print(type([1,2]))
# print(type((1,2,3)))
# print(type({"1":"2"}))
# print(type({‘1‘,2}))
# print(type(True))
# print(type(range))
# def hello():
#     print(‘hello‘)
# print(type(hello))
# class Student():
#     pass
# a=Student()
# print(type(a))
View Code
#引号
技术分享图片
#引号
# print(‘I am a student‘)
# print("I‘m a student")
# msg="""
# 会当凌绝顶,
# 一览众山小。
# """
# print(msg)
View Code
#用户交互input
技术分享图片
#用户交互input
#input得到的是字符串
# name=input(‘请输入你的名字:‘)
# age=input(‘请输入你的年龄:‘)
# print(name,age)
# print(type(name),type(age))
View Code
#条件控制语句if elif else
技术分享图片
#条件控制语句if elif else
# score=int(input(‘请输入你的成绩:‘))
# if score>90:
#     print(‘优秀‘)
# elif score>80:
#     print(‘良好‘)
# elif score>70:
#     print(‘一般‘)
# elif score>60:
#     print(‘及格‘)
# else:
#     print(‘不及格‘)

#条件语句的嵌套
# name=input(‘name:‘)
# age=int(input(‘age:‘))
# if name==‘alex‘:
#     if age==18:
#         print(‘welcome‘)
#     else:
#         print(‘age error‘)
# else:
#     print(‘name error‘)
View Code
#循环语句 while for
技术分享图片
#循环语句 while for
# count=1
# s=0
# while count<=100:
#     s+=count
#     count+=1
# print(s)

# s=0
# for i in range(1,101):
#     s+=i
# print(s)
View Code
#break continue else
技术分享图片
#break continue else
# count=0
# while count<10:
#     count+=1
#     if count==3:
#         break
#     print(count)
# else:
#     print(‘循环正常结束后执行‘)

# count=0
# while count<10:
#     count+=1
#     if count==3:
#         continue
#     print(count)
# else:
#     print(‘循环正常结束后执行‘)
View Code
#标志位
技术分享图片
#标志位
# flag=True
# count=1
# while flag:
#     print(count)
#     count+=1
#     if count>100:
#         flag=False
View Code

 













以上是关于python基础的主要内容,如果未能解决你的问题,请参考以下文章

001--python全栈--基础知识--python安装

Python基础之函数

python 目录

python基础

人生苦短,我用Python(目录)

Python基础--Python3基础语法