This website collects cookies to deliver better user experience
Learning Python-Basic course: Day 9, Summary of the week and exercises.
Learning Python-Basic course: Day 9, Summary of the week and exercises.
Today, we will look at the whole week's summary and check out some more questions. The solution to the Day 7 coding challenge is also provided.
Summary of the week-
Sample questions-
1) Password generator. Write a sample program to input a number and output a 6 Unicode-character password. Divide the number by numbers 1-7 and generate characters using the result.
a=int(input("Please enter a 6 digit number "))for i inrange(1,7):print(chr(a//i),end="")
for j inrange(1,5):for i inrange(1,j+1):print(chr(i+64),end="")for i inrange(-j+1,0):print(chr(-i+64),end="")print()
Exercise-
1) Write a program to get 5 characters from user, take its Unicode sum and display the corresponding character for Unicode value. Answer
Please enter a character A
Please enter a character A
Please enter a character T
Please enter a character M
Please enter a character A
Please enter a character J
Please enter a character -
Answer is Ǜ
2) Modify the password generator to include only keyboard characters (Unicode 33 to 126)
OUTPUT-
Please enter a 6 digit number 135689
#P@gk0
Solution to the coding challenge.
a=1n=0whileTrue:if(a>=50):break n=n+1for i inrange(0,n):for j inrange(0,n):print(a,end=",")if(a>=50):break a=a+1
✌️So friends that's all for now. 😊 Hope you all are having fun.😎 Please let me know in the comment section below 👇. And don't forget to like the post if you did. 😍 I am open to any suggestions or doubts. 🤠 Just post in the comments below or gmail me. 😉
Thank you all👍
For those who have not yet made account in Dev.to, you can have a free easy sign-up using your mail or GitHub accounts. I would suggest the budding developers to create your GitHub free account right away. You would require to register sooner or later anyways
🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥
Next day will begin from Tuesday📅, Monday is reserved for.... MATLAB MONDAYS💥 Follow me for updates...