Computer Science
Modify above program so as to print output as 5@10@9.
Python
Python Funda
53 Likes
Answer
a = 5
print(a, end='@')
a = a * 2
print(a, end='@')
a = a - 1
print(a)
Output
5@10@9
Answered By
25 Likes
Related Questions
Write a Python program that accepts radius of a circle and prints its area.
Write the program with maximum three lines of code and that assigns first 5 multiples of a number to 5 variables and then print them.
Write a program to read today's date (only del part) from user. Then display how many days are left in the current month.
Write a program that generates the following output :
5
10
9
Assign value 5 to a variable using assignment operator (=) Multiply it with 2 to generate 10 and subtract 1 to generate 9.