How to concatenate two functions on the same line?

The White Wolf
def headName():
    print (Name[0].upper())
def tailName():
    print (Name[1:].lower())

Name = input("Please enter a name ")
headName()
tailName()

That's my code; I want to know how to concatinate headName() and tailName(), so that they're on the same line. Thanks

BrenBarn

You can't do that without rewriting the functions. The newline is added by print. Since you call print inside the functions, nothing you do outside the function can undo the newline that was already added inside.

A better idea is to have your functions return the values, and then do the printing outside:

def headName():
    return Name[0].upper()
def tailName():
    return Name[1:].lower()

Name = input("Please enter a name ")
print(headName(), tailName(), sep="")

Incidentally, what you are doing can also be accomplished directly with Name.title().

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to concatenate two functions on the same line?

From Dev

How are these two functions the same?

From Dev

linux find -exec two commands and concatenate on same line

From Dev

How to test if two functions are the same?

From Dev

How to use the same line of code in all functions?

From Dev

How do I concatenate two vectors with one line of code

From Dev

How to concatenate two strings and add the result to the end of a line in python

From Dev

How to concatenate two files in a new one and sort the output in one line

From Dev

How to update a column with concatenate of two other column in a same table

From Dev

How to call two different functions for a same condition?

From Dev

How to mention two aggregation functions in the same query?

From Dev

How to run two functions at the same time with an object?

From Dev

How to ensure two words stay on the same line?

From Dev

How to use two let's on the same line?

From Dev

How to count two words as 1 in same line

From Dev

How to count two words as 1 in same line

From Dev

how to check if two points are on the same line in postgis

From Dev

How to set two image and text in same line

From Dev

How to set two block on the same line by middle?

From Dev

How to concatenate two arrays?

From Dev

How to Concatenate Two LPCSTRs

From Dev

how concatenate two commands?

From Dev

How to concatenate two arrays?

From Dev

How to concatenate 2 multiline strings line by line, like 'paste' does with two files

From Dev

How to create form with two input line on the same line?

From Dev

Two divs in the same line

From Dev

Two paragraphs in the same line

From Dev

Concatenate each line of two arrays into a single one

From Dev

Read two text files, concatenate each line

Related Related

  1. 1

    How to concatenate two functions on the same line?

  2. 2

    How are these two functions the same?

  3. 3

    linux find -exec two commands and concatenate on same line

  4. 4

    How to test if two functions are the same?

  5. 5

    How to use the same line of code in all functions?

  6. 6

    How do I concatenate two vectors with one line of code

  7. 7

    How to concatenate two strings and add the result to the end of a line in python

  8. 8

    How to concatenate two files in a new one and sort the output in one line

  9. 9

    How to update a column with concatenate of two other column in a same table

  10. 10

    How to call two different functions for a same condition?

  11. 11

    How to mention two aggregation functions in the same query?

  12. 12

    How to run two functions at the same time with an object?

  13. 13

    How to ensure two words stay on the same line?

  14. 14

    How to use two let's on the same line?

  15. 15

    How to count two words as 1 in same line

  16. 16

    How to count two words as 1 in same line

  17. 17

    how to check if two points are on the same line in postgis

  18. 18

    How to set two image and text in same line

  19. 19

    How to set two block on the same line by middle?

  20. 20

    How to concatenate two arrays?

  21. 21

    How to Concatenate Two LPCSTRs

  22. 22

    how concatenate two commands?

  23. 23

    How to concatenate two arrays?

  24. 24

    How to concatenate 2 multiline strings line by line, like 'paste' does with two files

  25. 25

    How to create form with two input line on the same line?

  26. 26

    Two divs in the same line

  27. 27

    Two paragraphs in the same line

  28. 28

    Concatenate each line of two arrays into a single one

  29. 29

    Read two text files, concatenate each line

HotTag

Archive