实例1------使用%操作符格式化字符串
brand = 'Apple'
exchangeRatr = 1.235235245
message = 'The price of this %s laptop is %d USD and the exchange rate is %4.2f USD to 1 EUR' %(brand, 1299, exchangeRatr)
print (message)
实例2-----列表(列表中单个值是可以通过他们的索引来获取的,索引总是从零开始,而不是从1开始。注意我们在声明列表时使用的是方括号[])
#声明列表,列表的元素可以是不同的数据类型
myList = [1, 2, 3, 4, 5, "Hello"]
#打印出整个列表
print (myList)
#打印第三个元素
print (myList[2])
#打印最后一个元素
print (myList[-1])
#把myList (从索引1到4的元素)分配给myList2,并打印myLis2
myList2 = mylist[1:5]
print (myList2)
#修改myList中的第二个元素,并打印出更新的列表
myList[1] = 20
print (myList)
#在myList中添加一个新的元素,并打印出更新的列表
myList.append("How are you")
print (myList)
#从myList中删除第六个元素,并打印出更新的列表
del myList[5]
print (myList)
实例3-----字典(字典是相关数据对的一个集合。注意我们声明字典时使用的是大括号。在一个字典中,字典的关键字必须是唯一的)
userNameAngAge = {"Peter":38, "John":51, "Alex":13, Alvin = "Not Available" }
程序可交互
实例4-----input
myName = input("Pleare enter your name: ")
myAge = input("whot about your age: ")
print ("Hello world,my name is", myName, "and I an", myAge, "years old.")
myName = input("Pleare enter your name: ")
myAge = input("whot about your age: ")
print ("Hello world,my name is %s and I an %s years old." %(myName,myAge))
python新手编程100例选择和判断(1,if语句 2,for循环 3,while循环)
实例5-----if语句(python中在if,elif和else关键字的后面不需要括号(),而且也不需要大括号{}来表示if语句的开始和结束)。
userInput = input('Enter 1 or 2: ')
if userInput == "1":
print ("Hello Worad")
print ("How are you?")
elif userInput == "2":
print ("Python Rocks!")
print ("I love Python")
else:
print ("You did not enter a valid number")
score = int(input('请输入一个分数: '))
if 100>= score >= 85:
print('优秀')
elif 85 > score >= 70:
print('良好')
elif 70 > score >= 60:
print('及格')
elif 60 > score >= 0:
print('不及格')
else:
print('输入错误!')
score = int(input('请输入一个分数: '))
if score < 0 or score > 100:
print('输入错误!')
else:
if 100>= score >= 85:
print('优秀')
elif 85 > score >= 70:
print('良好')
elif 70 > score >= 60:
print('及格')
else:
print('不及格')
实例6-----for循环
pets = ['duan', 'sheng', 'liang', 'you', 'are', 'great']
for myPets in pets:
print (myPets)
pets = ['duan', 'sheng', 'liang', 'you', 'are', 'great']
for index,
myPets in enumerate(pets):
print (index, myPets)
在一段数字上循环(range(start end step))
for i in range(10):
print (i)
实例7-----while循环
counter = 5
while counter > 0:
print ("Counter = ", counter)
counter = counter - 1
j = 0
for i in range(5):
j = j + 2
print('i = ', i, ', j = ', j)
if j == 6:
break
temp = input("不妨猜一下小甲鱼现在心里想的是哪里数字: ")
guess = int(temp)
if guess == 8:
print("你是小甲鱼心里的蛔虫吗?!")
print("哼,猜中也没有将来")
else:
print("猜错啦,小甲鱼现在心里想的是8!")
temp = input("不妨猜一下小甲鱼现在心里想的是哪里数字: ")
guess = int(temp)
if guess == 8:
print("你是小甲鱼心里的蛔虫吗?!")
print("哼,猜中也没有将来")
else:
if guess > 8:
print("哥,大了大了~~~")
else:
print("哥,小了小了~~~")
flag = 10
while flan:
print(flag)
flag -= 1
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论