HP Forums
How to make a single parenthesis in HP PRIME? - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: How to make a single parenthesis in HP PRIME? (/thread-19917.html)



How to make a single parenthesis in HP PRIME? - Williams369 - 05-07-2023 01:45 AM

There is a key where you can do both parenthesis "( )", however how do I go about doing just one either "(" or ")".


RE: How to make a single parenthesis in HP PRIME? - rawi - 05-07-2023 01:07 PM

You can go to Sift Chars and select a single paranthesis. But IMHO this is more effort than to make two parentheses and then delete one.


RE: How to make a single parenthesis in HP PRIME? - Tyann - 05-07-2023 03:01 PM

Bonjour
Personnellement j'utilise un programme pour redéfinir certaines touches du clavier et dans lequel j'ai :

Hello
I personally use a program to redefine certain keys on the keyboard and in which I have :

Code:
KEY K_Paren()
BEGIN 
RETURN "(";
END;

KEY KS_Paren()
BEGIN 
RETURN ")";
END;

Ensuite
Then

'Shift' 'Help' '()' renvoie (
'Shift' 'Help' 'Shift' '()' renvoie )

Assez pratique pour moi.
Pretty handy for me.