+ 1

I am beginner in python and also in programming. What can i do?

15th Dec 2020, 5:45 PM
Partha Sarathy
Partha Sarathy - avatar
5 odpowiedzi
+ 2
Try to solve real life problems.. Everything starts with a how... And also finish the courses here.. They are amazing.
15th Dec 2020, 5:46 PM
Rafi Ahmed Saad
Rafi Ahmed Saad - avatar
+ 3
SL tutorials.
15th Dec 2020, 9:52 PM
Sonic
Sonic - avatar
+ 1
If you need more questions the send me a message, I will send you.
15th Dec 2020, 6:02 PM
Omkar Kamat
Omkar Kamat - avatar
0
I can try
15th Dec 2020, 5:54 PM
Partha Sarathy
Partha Sarathy - avatar
0
Learn the basics and practice it. Questions to practice: 1. Write a Python program to print the following string in a specific format (see the output). Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are" Output : Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are Hint: ** You will need to find out syntax for "next line" and tab. 2. Write a program that reads an integer and outputs its last digit. Sample Input 1: 425 Sample Output 1: 5   Hint: ** You can either use one of the arithmetic operators we used in the class or the character position (example: name[0]) 3. Write a Python program to calculate the sum of the digits of a two digit integer. Get the number inputted by the user.
15th Dec 2020, 6:01 PM
Omkar Kamat
Omkar Kamat - avatar