想要学习编程很久了。
昨天听了课,但没有时间练习,今天晚上正式开始操练。可刚一开始,就卡住了。路径无法从C:\Users\zongzi 切换到D:\python。试了好多次,然后发现是权限的问题。因为自己是以用户的身份登入命令提示符的,所以没有变更路径的权限。Google了一下,找到合适的方法以管理员身份登入命令提示符,就可以正常变更路径了。然后就很顺利地完成了老师讲解的操作。
开心的是,自己很快完成了老师预留的作业:
Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”. 写一个程序,打印1到100中数字。 但是遇到数字为3的倍数的时候,打印“Fizz”替代数字,5的倍数用“Buzz”代替,既是3的倍数又是5的倍数打印“FizzBuzz”。
我的答案是这样的:
n=1
while n<=100:
if n%3==0 and n%5==0:
print("FizzBuzz")
elif n%3==0:
print("Fiss")
elif n%5==0:
print("Buzz")
else:
print(n)
n=n+1
看到电脑跑出一连串自己想要的结果,真的是一种难以言喻的快乐!