Skip to content

Instantly share code, notes, and snippets.

View vachanmn123's full-sized avatar
🧠
Brainstorming

Vachan MN vachanmn123

🧠
Brainstorming
View GitHub Profile
@vachanmn123
vachanmn123 / output.py
Created December 31, 2022 17:01
Python Programs
Python 3.11.0 (main, Oct 24 2022, 00:00:00) [GCC 12.2.1 20220819 (Red Hat 12.2.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>># First Program
>>> print("Hello, World!")
Hello, World!
>>> myName = input("What is your name? ")
What is your name? VachanMN
>>> print("Hello, " + myName + ", You will be " + str(int(myAge)+1) + " years old in one year.")
Hello, VachanMN, You will be 19 years old in one year.
>>>