Skip to main content

Printing Name Using Symbols

 This is simple program of printing name using symbols. It just look cool to see.

In this program we have simply written print function for different letters. Depending on our input it will take one by one letter and print that letter in the form of symbols.

This is just for fun.

   

#Author : SPPU CSE GURU name = input("Enter your name: ") print("\n") print("<><><><><><><><><><><><><><><><><><><><><>\n")

for letter in name: letter = letter.upper() if (letter == "A"): print("..@@@@@@..\n..@....@..\n..@@@@@@..\n..@....@..\n..@....@..\n\n") elif (letter == "B"): print("..@@@@@@..\n..@....@..\n..@@@@@...\n..@....@..\n..@@@@@@..\n\n") elif (letter == "C"): print("..@@@@@@..\n..@.......\n..@.......\n..@.......\n..@@@@@@..\n\n") elif (letter == "D"): print("..@@@@@...\n..@....@..\n..@....@..\n..@....@..\n..@@@@@...\n\n") elif (letter == "E"): print("..@@@@@@..\n..@.......\n..@@@@@...\n..@.......\n..@@@@@@..\n\n") elif (letter == "F"): print("..@@@@@@..\n..@.......\n..@@@@@...\n..@.......\n..@.......\n\n") elif (letter == "G"): print("..@@@@@@..\n..@.......\n..@@@@@...\n..@....@..\n..@@@@@...\n\n") elif (letter == "H"): print("..@....@..\n..@....@..\n..@@@@@@..\n..@....@..\n..@....@..\n\n") elif (letter == "I"): print("..@@@@@@..\n....@@....\n....@@....\n....@@....\n..@@@@@@..\n\n") elif (letter == "J"): print("..@@@@@@..\n....@@....\n....@@....\n..@.@@....\n..@@@@....\n\n") elif (letter == "K"): print("..@...@...\n..@..@....\n..@@......\n..@..@....\n..@...@...\n\n") elif (letter == "L"): print("..@.......\n..@.......\n..@.......\n..@.......\n..@@@@@@..\n\n") elif (letter == "M"): print("..@....@..\n..@@..@@..\n..@.@@.@..\n..@....@..\n..@....@..\n\n") elif (letter == "N"): print("..@....@..\n..@@...@..\n..@.@..@..\n..@..@.@..\n..@...@@..\n\n") elif (letter == "O"): print("..@@@@@@..\n..@....@..\n..@....@..\n..@....@..\n..@@@@@@..\n\n") elif (letter == "P"): print("..@@@@@@..\n..@....@..\n..@@@@@@..\n..@.......\n..@.......\n\n") elif (letter == "Q"): print("..@@@@@@..\n..@....@..\n..@.@..@..\n..@..@.@..\n..@@@@@@..\n\n") elif (letter == "R"): print("..@@@@@@..\n..@....@..\n..@.@@...\n..@...@...\n..@....@..\n\n") elif (letter == "S"): print("..@@@@@@..\n..@.......\n..@@@@@@..\n.......@..\n..@@@@@@..\n\n") elif (letter == "T"): print("..@@@@@@..\n....@@....\n....@@....\n....@@....\n....@@....\n\n") elif (letter == "U"): print("..@....@..\n..@....@..\n..@....@..\n..@....@..\n..@@@@@@..\n\n") elif (letter == "V"): print("..@....@..\n..@....@..\n..@....@..\n...@..@...\n....@@....\n\n") elif (letter == "W"): print("..@....@..\n..@....@..\n..@.@@.@..\n..@@..@@..\n..@....@..\n\n") elif (letter == "X"): print("..@....@..\n...@..@...\n....@@....\n...@..@...\n..@....@..\n\n") elif (letter == "Y"): print("..@....@..\n...@..@...\n....@@....\n....@@....\n....@@....\n\n") elif (letter == "Z"): print("..@@@@@@..\n......@...\n.....@....\n....@.....\n..@@@@@@..\n\n") elif (letter == " "): print("..........\n..........\n..........\n..........\n\n") elif (letter == "."): print("..........\n..........\n....@@....\n....@@....\n..........\n..........\n") print("<><><><><><><><><><><><><><><><><><><><><>")

Comments

Popular posts from this blog

Circle Triangle Pattern

  Group A   Practical 3 a   Problem Statement :   a) Write C++ program to draw the following pattern. Use DDA line and Bresenham‘s circle drawing algorithm. Apply the concept of encapsulation. Check Out Code Here  ðŸ‘‡ Output :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

DSL A2

  Write a Python program to store marks scored in subject “Fundamental of Data Structure” by N students in the class. Write functions to compute following:  a) The average score of class  b) Highest score and lowest score of class  c) Count of students who were absent for the test  d) Display mark with highest frequency The Code for above problem is as follows : """ @author: SPPU SE GURU """ total=int(input ("Enter total no. of students in your class ")) pre=int(input("No. of students appeared for FDS exam : ")) U=[] for i in range (total): i=i+1 U.append(i) R=[] for i in range(pre): roll=int(input("Enter Roll no. of students present for test :- ")) R.append(roll) M=[] for i in range(pre): print("Enter Roll no. ",R[i],end=" ") marks=int(input("Marks:- ")) M.append(marks) print("********** Solutions Are as fo...

DSL E29

 Data Structure Lab : Practical 29 : Problem Statement:  Queues are frequently used in computer programming, and a typical example is the creation of a job queue by an operating system. If the operating system does not use priorities, then the jobs are processed in the order they enter the system. Write C++ program for simulating job queue. Write functions to add job and delete job from queue Check Out Code Here  ðŸ‘‡ // Author : SPPU CSE GURU #include<iostream> using namespace std; class Queue{ private: int front,rear,max; public: int Q[10]; Queue() { front=0; rear=-1; max=10; } void EnQueue(); void DeQueue(); void Display(); }; void Queue::EnQueue() { int data; cout<<"Enter Job no. to Add "<<endl; cin>>data; if(rear...