Write a Python Program to Find And Display The Maximum of Three Given Numbers

Write a Python Program to Find And Display The Maximum of Three Given Numbers

Code With TJ

54 года назад

160 Просмотров

Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Find And Display The Maximum of Three Given Numbers

Python Scripts
======================
https://codewithtj.blogspot.com/2024/01/python-script-list.html

Python Functions Solved
==========================
https://codewithtj.blogspot.com/2023/10/python-function-code-with-tj-page-1.html

Python Programs Solved
============================
https://codewithtj.blogspot.com/2023/09/python-programs.html


Code
=============================
a = int(input("Enter first number : "))
b = int(input("Enter second number : "))
c = int(input("Enter third number : "))

maximum = a
if b replace_this_with_greater_than_symbol maximum:
maximum = b
if c replace_this_with_greater_than_symbol maximum:
maximum = c

print("The Maximum of Three Given Numbers is ", maximum)


Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Ссылки и html тэги не поддерживаются


Комментарии: